브라우저별 CSS Hack

IE 6 가 사라지면서 점점 안쓰게 되길…

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;