图片按钮 CSS

来源:互联网 发布:四舍五入数据 英文 编辑:程序博客网 时间:2024/05/29 13:55
데스크홈 로딩 중입니다.

CSS Code

view source
print?
01/* UI Object */
02/* Common */
03body,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}
04body,input,textarea,select,button,table{font-family:'돋움',Dotum,AppleGothic,sans-serif;font-size:12px}
05img,fieldset{border:0}
06ul,ol{list-style:none}
07em,address{font-style:normal}
08a{text-decoration:none}
09a:hover,a:active,a:focus{text-decoration:underline}
10 
11.ld_line{position:absolute;top:0;left:0;z-index:1000;height:40px}
12.ld_line:after{display:block;clear:both;content:''}
13.ld_line .lft,.ld_line .rgt{float:left;width:11px;height:40px;font-size:0;line-height:0}
14.ld_line .lft{background:url(http://static.naver.com/desk/ld1_lft.png) no-repeat 00;_background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.naver.com/desk/ld1_lft.png',sizingMethod='crop')}
15.ld_line .rgt{background:url(http://static.naver.com/desk/ld1_rgt.png) no-repeat 00;_background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.naver.com/desk/ld1_rgt.png',sizingMethod='crop')}
16.ld_line .cont{float:left;height:26px;padding:14px 7px 0 0;background:url(http://static.naver.com/desk/ld1_cen.png) repeat-x 00;_background:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://static.naver.com/desk/ld1_cen.png',sizingMethod='scale');color:#fff}
17.ld_line .cont img{margin:-3px 9px 0 0;vertical-align:top}
18/* //UI Object */

HTML Code

1<!-- UI Object -->
2<div class="ld_line">
3    <div class="lft"></div>
4    <div class="cont"><img src="http://static.naver.com/desk/ico_ld_cm.gif" width="17" height="17" alt=""><strong>데스크홈</strong> 로딩 중입니다.</div>
5    <div class="rgt"></div>
6</div>
7<!-- //UI Object -->