반응형
<button>간 여백 제거 (ie6~7 여백 버그)
overflow:visible;
<button>간 여백 제거 (파이어폭스 버그)
button::-moz-focus-inner {border:0; padding:0;} // 파이어폭스에서는 button태그에 자체 padding값을 가지고 있음.
기타 참고
<button>요소 링크 걸기
1.기존창
<button type="button" onclick="location.href('#');" name="" id="" >로그인</button>
2.새창
<button type="button" onclick="window.open('#');" name="" id="" >로그인</button>
3.팝업
<button type="button" onclick="window.open('#','','width=500,height=500');return false;" name="" id="" >로그인</button>
반응형
'# Work > HTML/CSS' 카테고리의 다른 글
웹접근성을 지원하는 그래프 차트 플러그인 nWagon (0) | 2014.02.13 |
---|---|
mailto 의 여러 속성 (0) | 2014.01.15 |
select박스 스타일 주기 스크립트 (0) | 2013.10.17 |
메일폼, 모바일 css지원 여부 ( complete breakdown of the CSS support for every popular mobile, web and desktop email client ) (0) | 2013.10.15 |
레이어 팝업 - 키보드 접근성. (0) | 2013.07.24 |