728x90
1. checkbox & label 높이 조절하기
- checkbox top값 +1.5px 또는 label top값 - 1.5px
<head>
<style type="text/css">
.login_append input[type="checkbox"]{
position: relative;
top: 1.5px;
}
</style>
</head>
<body>
<div class="login_append">
<input type="checkbox" id="keepLogin" class="inp_radio" name="keepLogin">
<label for="keepLogin">로그인 상태 유지</label>
</div>
</body>
728x90
'IT > CSS' 카테고리의 다른 글
[폰트] @font-face{} 적용하기 (0) | 2020.09.29 |
---|---|
[가상 클래스] first-child, first-of-type - 요소 선택하기 (0) | 2020.09.26 |
[정렬] css로 요소 화면 가운데 위치시키기 (2) | 2020.09.26 |
[단위] 7가지(rem, vh, vw, vmin, vmax, ex, ch) (0) | 2020.09.25 |