CSS 큰 체크박스 (이미지 1개)

Jmnote (토론 | 기여)님의 2015년 10월 28일 (수) 11:39 판 (새 문서: ==개요== ;CSS 큰 체크박스 만들기 2 <source lang='html5'> <style> #mycheckbox { display: none; } #mycheckbox + label { line-height: 1.5em; vertical-align: midd...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

CSS 큰 체크박스 만들기 2
<style>
#mycheckbox { 
    display: none; 
}
#mycheckbox + label {
    line-height: 1.5em;
    vertical-align: middle;
    background: white;
}
#mycheckbox + label > div {
    float: left;
    width: 1.5em; height: 1.5em;
    border: 1px solid #777;
    border-radius: 2px;
}
#mycheckbox:checked + label:before {
    content:"";
    position: absolute;
    top: .55em; left: .55em;
    width: 1.5em; height: 1.5em;
    background-image: url('//mediawiki.org/static/1.27.0-wmf.3/resources/lib/oojs-ui/themes/mediawiki/images/icons/check-constructive.png');
}
</style>
<input type="checkbox" id="mycheckbox"> <label for='mycheckbox'><div></div>&nbsp;동의합니다.</label>


2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}