Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- OL
- th
- table
- html
- 프론트엔드강의
- React & Redux로 시작하는 웹 프로그래밍
- img
- 표
- React강의
- dd
- 국비지원교육
- thead
- css
- tr
- K디지털기초역량훈련
- Strong
- 프론트엔드
- CSS3
- td
- tbody
- javascript
- 패스트캠퍼스
- 내일배움카드
- 배열
- form
- ul
- li
- å
- let
- figcaption
Archives
- Today
- Total
web study
마우스 이벤트 mouse event 본문
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<title>color 연습</title>
<style>
h1 {
color: red;
font-weight: bold;
}
h1>span {
color: cornflowerblue;
}
ul li a {
color: orange;
font-size: 24px;
font-weight: 700;
text-decoration: none;
}
ul li a:hover {
background-color: orange;
color: black;
}
</style>
</head>
<body>
<h1><span>마우스 이벤트</span> mouse event</h1>
<ul>
<li><a href="#">네이버</a> </li>
<li><a href="#">다음</a> </li>
<li><a href="#">구글</a> </li>
</ul>
</body>
</html>
마우스 이벤트 mouse event
'web > css' 카테고리의 다른 글
font와 text의 여러 특성들 (0) | 2023.01.10 |
---|---|
배경색 background-color (0) | 2023.01.10 |
글자 색상 color (0) | 2023.01.10 |