Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[css] 양쪽 정렬 버튼 본문
[출처] http://html.nhncorp.com/uio_factory/ui_pattern/button/3
양쪽 정렬 버튼입니다. 버튼을 양쪽정렬 해야하는 경우 활용할 수 있습니다.
CSS
/* UI Object */
/* Common */
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select{margin:0;padding:0}
body,input,textarea,select,button,table{font-family:'돋움',Dotum,AppleGothic,sans-serif;font-size:12px}
img,fieldset{border:0}
ul,ol{list-style:none}
em,address{font-style:normal}
a{text-decoration:none}
a:hover,a:active,a:focus{text-decoration:underline}
.btn_both{overflow:hidden;clear:both;width:100%}
.btn_both .fl{float:left}
.btn_both .fr{float:right}
/* //UI Object */
HTML
<!-- UI Object -->
<div class="btn_both">
<div class="fl">
<a href="#"><img src="http://static.naver.com/kin/09renewal/btn_select_all.gif" width="52" height="20" alt="전체선택"></a>
</div>
<div class="fr">
<a href="#"><img src="http://static.naver.com/kin/09renewal/btn_shifting.gif" width="56" height="30" alt="이동"></a>
<a href="#"><img src="http://static.naver.com/kin/09renewal/btn_delete2.gif" width="56" height="30" alt="삭제"></a>
</div>
</div>
<!-- //UI Object -->
'WEB (HTML, CSS)' 카테고리의 다른 글
IE8 에서 input type="text" 컨트롤 안에서 글자가 위로 붙는 현상 수정. (0) | 2013.11.21 |
---|---|
jQuery Multiple File Upload with Progress bar (1) | 2013.11.05 |
How to specify the default error page in web.xml? (0) | 2013.10.07 |
input type="file" 에서 찾아보기 버튼 바꾸기 (0) | 2013.09.10 |
콤보박스(select)에서 Readonly (2) | 2013.09.03 |
Comments