CSS
[CSS] ::after 가상선택자 배경이미지넣기
힘없는염소
2015. 1. 5. 12:52
Internet Explorer 7 이하 버전은 after 가상 선택자를 지원 하지 않는다.
td 요소 맨 마지막에 가상 태그를 넣은후 배경이미지를 지정
td::after {background: url(../images/icon.png) no-repeat 0px 0px;content: "";display: inline-block;height: 10px;width: 10px;margin: 0 3px 0 8px;/* background-size: 42%; */}
반응형