본문 바로가기

DHTML/CSS/META

체크(라디오)박스와 label 높이 일치시키기


<style>
        *    { margin:0px; padding:0px; }
        body    { font-size:12px; font-family:Malgun Godic; }

        li    { list-style:none; }

        ol li    { padding:5px 10px 3px 0px; border-bottom:1px solid #e5e5e5; }

        .hidden1    { display:hidden; border:1px solid red !important; }
        
        .checkbox    { vertical-align:middle; margin-bottom:2px; }
    </style>

    <div style="margin:50px auto; width:500px; border:1px solid black; padding:10px;" class="hidden1">
        <ol>
            <li><input type="checkbox" class="checkbox" /> 항목1</li>
            <li><input type="checkbox" class="checkbox" /> 항목2</li>
            <li><input type="checkbox" class="checkbox" /> 항목3</li>
            <li><input type="checkbox" class="checkbox" /> 항목4</li>
            <li><input type="checkbox" class="checkbox" /> 항목5</li>
        </ol>
    </div>