일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SSL
- 문자열
- 날짜
- @RequestBody
- RADIO
- MYSQL
- 오라클
- switch
- maven
- HTML5
- java
- 스크립트
- exception
- html
- json
- Oracle
- 웹 플랫폼 설치 관리자
- 네이버스마트 에디터
- 한글
- DB
- null
- 전자정부 표준프레임워크
- spring form tag
- checbox
- php
- 이클립스
- 호환성
- JSTL
- 톰캣
- jquery
- Today
- Total
개인적인 정리
툴팁 css 본문
.tooltiptxt_air {
display: inline-block;
position: absolute;
left: 0px;
top: -43px;
border: 1px solid #aaa;
border: 1px solid rgba(0,0,0,.2);
border-radius: 5px;
padding: 10px;
color: #666;
background-color: #fff;
z-index: 1001;
width: 230px;
font-size: 11px;
letter-spacing: -1px;
display: none;
}
아래 방식에서 위 방식으로 변경
[data-tooltip-text]:hover {
position: relative;
}
[data-tooltip-text]:hover:after {
content: attr(data-tooltip-text);
position: absolute;
bottom: 100%;
left: -50px;
top: -45px;
border: 1px solid rgba(0,0,0,.2);
border-radius: 5px;
padding: 10px;
color: #666;
background-color: #fff;
z-index: 1001;
width: 240px;
font-size: 13px;
letter-spacing: -1px;
}
--> 호환성 관련해서 아래 방식일 경우 문제가 되어서 위방식으로 변경한 후에
스크립트로 추가 작업을 해줌
'HTML & CSS' 카테고리의 다른 글
이미지 엑박 대신 기본이미지 (0) | 2019.05.03 |
---|---|
ie에서 display:inline-block이 먹지 않을 때 (0) | 2017.03.14 |
브라우저내에서 화면캡쳐 html2canvas (0) | 2017.02.13 |
Uncaught DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported. (0) | 2017.02.13 |
[css]이미지 리사이징, 화면(영역)보다 이미지가 클 때 (0) | 2016.12.11 |
미디어 쿼리 기본 분기 (0) | 2016.12.05 |
레이어 팝업 (0) | 2016.11.23 |
input type="submit" (0) | 2016.11.11 |