button{
公司主营业务:做网站、成都网站建设、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联推出淮安区免费做网站回馈大家。
width:70px;
height:30px;
color:#fff;
text-align: center;
background-color:#c00;
color:#fff;
line-height: 28px;
border-radius:15px;
border:0;
outline: 0;
transition: background 0.2s
}
button:hover{
background:#666
}
buttonGo/button
用background-position去取背景图片的坐标 a{background:url(
?t=1315462873338) no-repeat -6px -3px;display:block;width:79px;height:33px;text-indent:-9999px;}a:hover{background-position:-87px -3px;}登陆
css里按钮用button来定义。
可以这样写:
button {
position:absolute;
.......
}
.tl {
width: 240px;
height: 193px;
position: absolute;/*这里一定要设置*/
z-index: 999999;/*这里是该元素与显示屏的距离,据说越大越好,因为没有它也是可以的*/
margin-top: 20%;
margin-left: -209px;
background-image :url("/ship_three/images/tl.png");
-webkit-transition: .5s ease-in-out;/* css的transition允许css的属性值在一定的时间内从一个状态平滑的过渡到另一个状态 */
-moz-transition: .5s ease-in-out;/*这里为了兼容其他浏览器*/
-o-transition: .5s ease-in-out;
background-image: url("/ship_three/images/tl.png");
}
可以,没问题CSS代码就是上面的。
扩展资料:
div中style使用css代码
div中可以直接写CSS样式代码,只需要DIV代码(标签)中使用style属性即可直接写CSS样式。
DIV代码:
div style="color:#F00;border:1px solid #000;width:300px;height:100px"你好 DIVCSS5/div
完整案例代码与效果截图:
完整HTML案例代码
!DOCTYPE html
html
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
titleDIV直接写CSS DIVCSS5案例/title
/head
body
div style="color:#F00;border:1px solid #000;width:300px;height:100px"你好 DIVCSS5/div
/body
/html
div标签内常用属性列表
1、style 设置css样式(扩展了解style标签)
2、align 设置div盒子内的内容居中、居左、居右
3、id 引人外部对应#(井号)选择符号样式
4、class 引人外部对应.(句号)选择符号样式
5、title 设置div(标题)鼠标经过时显示文字(扩展了解 title标签)
参考资料来源:DIV-百度百科