묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입 폼 input 필드 높이 조절 (CSS)
2015.08.13 15:19
input 필드의 높이를 조절하고싶습니다.
/xe/layouts/mylayout/css/style.css 를 아래와 같이 수정했습니다.
#email_address{
color:blue;
padding:5px !important;
height:20px !important;
}
color:blue는 적용이 되었습니다.
padding, height는 적용이 안되었습니다.
제가 무엇을 놓치고 있나요?
도움 부탁드립니다. (__)
input {
-webkit-box-sizing: content-box !important;
-moz-box-sizing: content-box !important;
box-sizing: content-box !important;
}