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
- hide
- Git
- toFixed()
- selectedIndex
- 1521
- Parent
- calc.minus
- index %
- 주석이 먹히지 않을 때
- FileZilla설치
- 파일질라설치
- ctrl+/
- SUB함수
- 소스트리인증실패
- Math.round()
- calc.plus
- Math.ceil()
- excel중복체크
- is_check
- removeClass
- slideUp
- addClass
- Excel
- push오류
- 파일질라설치오류
- selectoptions
- 파일질라다운로드
- Math.floor()
- 증가값
- FileZilla다운로드
Archives
- Today
- Total
잡동사니에도 사랑을
[21.09.17] exam10(05_cssPositioning) - 숨겨져 있는 단어 마우스 올려 보이게 하기(<span> 태그 두 번) 본문
JAVA_EE/CSS
[21.09.17] exam10(05_cssPositioning) - 숨겨져 있는 단어 마우스 올려 보이게 하기(<span> 태그 두 번)
luvforjunk 2021. 9. 17. 19:06728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
.item span {
visibility: hidden;
}
.item:hover span{
visibility: visible;
color: red;
}
</style>
</head>
<body>
<h3>다음 빈 곳에 숨은 단어?</h3>
<hr>
<ul>
<li>I (<span class="item"><span>love</span></span>) you.
<li>CSS is Cascading
(<span class="item"><span>Style</span></span>) Sheet.
<li>응답하라 (<span class="item"><span>1988</span></span>).
</ul>
</body>
</html>
<!--
[문제] () 괄호 안에 마우스를 올리면 답이 빨간색으로 나타나게 하시오
-->
728x90
반응형