- 전체(91)
- html5(1)
- web accessibility(11)
- Cross Browsing(20)
- html basic(7)
- css basic(23)
- meta(2)
- form(12)
- table(2)
- menu(2)
- box(1)
- button(1)
- font(1)
- etc(8)
- CSS 애니메이션
CSS로 구현
html
<!--First tooltip-->
<a href="#" class="tooltip">
Tooltip
<span>
<img class="callout" src="http://www.menucool.com/tooltip/cssttp/callout_black.gif" />
<strong>Most Light-weight Tooltip</strong><br />
This is the easy-to-use Tooltip driven purely by CSS.
</span>
</a>
<!--Second tooltip-->
<a href="#" class="tooltip">
<img src="http://www.menucool.com/tooltip/css-tooltip-image.gif" />
<span>
<img class="callout" src="http://www.menucool.com/tooltip/cssttp/callout_black.gif" />
<img src="http://www.menucool.com/tooltip/src/tooltips-cd2.jpg" style="float:right;" />
<strong>CSS only Tooltip</strong><br />
Pure CSS popup tooltips with clean semantic XHTML.
</span>
</a>
css
a.tooltip {outline:none; }
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none;}
a.tooltip span {
z-index:10;display:none; padding:14px 20px;
margin-top:60px; margin-left:-160px;
width:300px; line-height:16px;
}
a.tooltip:hover span{
display:inline; position:absolute;
border:2px solid #FFF; color:#EEE;
background:#333 url(
http://www.menucool.com/tooltipcssttp/css-tooltip-gradient-bg.png) repeat-x 0 0;
}
.callout {z-index:20;position:absolute;border:0;top:-14px;left:120px;}
/*CSS3 extras*/
a.tooltip span
{
border-radius:2px;
box-shadow: 0px 0px 8px 4px #666;
/*opacity: 0.8;*/
}
댓글 0
댓글 쓰기 권한이 없습니다.
91 | Modernizr - 브라우저 기능검사 | 2017.05.29 |
90 | 화면 깜빡임(FOUC) 문제해결 | 2017.05.29 |
89 | 폼 필드(input type="file") | 2017.05.29 |
88 | 폼필드(체크박스, 라디오) | 2017.05.29 |
87 | 폼 필드(select 박스) | 2017.05.29 |
86 | 폼 필드(input type="text") | 2017.05.29 |
85 | select box, input box style 초기화 CSS | 2017.05.29 |
84 | 파일 찾기 | 2017.04.27 |
83 | 디자이너를 위한 오픈소스 프로젝트 6선 | 2017.04.27 |
82 | 이메일별 border-radius 처리 방법 | 2017.03.14 |
81 | CSS를 최적화하고 파일크기를 줄이는 15가지 방법 | 2017.03.14 |
> | tooltip | 2017.03.14 |
79 | height 100% 높이의 레이아웃잡기 | 2017.03.14 |
78 | 웹접근성 | 2017.03.14 |
77 | css3로 슬라이드 만들기 | 2017.03.14 |
76 | HTML5 브라우저 파편화를 최소화해주는 폴리필(POLYFILL)이란? | 2017.02.08 |
75 | 인라인 코딩 사이에 개행으로인한 공백 없애기 | 2017.02.08 |
74 | opacity | 2016.05.30 |
73 | 말줄임 | 2016.05.27 |
72 | background-size: cover | 2016.05.27 |