사용자 도구

사이트 도구


html:css:hacks

브라우저별 CSS Hack

Firefox Button/Input[type="submit"] 픽셀 뒤틀림

FF 의 기본 CSS 때문에 button/input[type='submit'] 계열의 높이가 달라지는 문제가 있다. 이는 다음에서 해결책을 제시하고 있다.

input[type="submit"]::-moz-focus-inner {border:0;} /* ff specific stuff, yuck*/ 
input[type="submit"]:focus {background:#333;} /* change accordingly depending on your button bg color, this fixes the focus problem when using keyboard to move betweenform elements */
 
/* for IE 8 */
display: block;
position: relative;
float: left;
html/css/hacks.txt · 마지막으로 수정됨: 2012/02/09 21:29 저자 kwon37xi