1、首先打开编辑器,然后新建一个html文件,编写入基本的框架。
2、然后用form,input和label创建一个单项选择题。
3、创建一个新的css文件,并且用link标签关联HTML文件。
4、然后撤销一下原来按钮的样式。
nput[type="radio"] {
display: none
}
5、nput[type='radio'] + label:before{
content: ""
display: inline-block
width: 20px
height: 20px
border: 2px solid gold
}
首先设置未点击的单选框样式,用border来设置颜色。
6、nput[type='radio']:checked + label:before{
background-color: red
}
接着设置点击后的背景颜色,这里用background-color。
7、最后运行一下,完成效果图。
html页面如下:
<div class="wrapper">
<div id="focus">
<ul>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/01.jpg" alt="QQ商城焦点图效果下载" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/02.jpg" alt="QQ商城焦点图效果教程" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/03.jpg" alt="jquery商城焦点图效果" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/04.jpg" alt="jquery商城焦点图代码" /></a></li>
<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/05.jpg" alt="jquery商城焦点图源码" /></a></li>
</ul>
</div>
</div><!-- wrapper end -->
</body>
css样式:
<style type="text/css">
* {margin:0 padding:0}
body {font-size:12px color:#222 font-family:Verdana,Arial,Helvetica,sans-serif background:#f0f0f0}
.clearfix:after {content: "." display: block height: 0 clear: both visibility: hidden}
.clearfix {zoom:1}
ul,li {list-style:none}
img {border:0}
.wrapper {width:800px margin:0 auto padding-bottom:50px}
/* qqshop focus */
#focus {width:800px height:280px overflow:hidden position:relative}
#focus ul {height:380px position:absolute}
#focus ul li {float:left width:800px height:280px overflow:hidden position:relative background:#000}
#focus ul li div {position:absolute overflow:hidden}
#focus .btnBg {position:absolute width:800px height:20px left:0 bottom:0 background:#000}
#focus .btn {position:absolute width:780px height:10px padding:5px 10px right:0 bottom:0 text-align:right}
#focus .btn span {display:inline-block _display:inline _zoom:1 width:25px height:10px _font-size:0 margin-left:5px cursor:pointer background:#fff}
#focus .btn span.on {background:#fff}
#focus .preNext {width:45px height:100px position:absolute top:90px background:url(img/sprite.png) no-repeat 0 0 cursor:pointer}
#focus .pre {left:0}
#focus .next {right:0 background-position:right top}
</style>
1、首先打开html5编辑器,新建一个html文件,在里面写入一个button按钮,被button按钮设置一个样式,这里给它的class属性设置为btn:
2、在上方引入style标签,在里面设置btn类的样式,这里设置宽度和高度使用width和height属性就可以了,最后在美化一下按钮,设置背景色和字体颜色以及文字橘子效果:
3、最后打开浏览器,即可看到设置好的按钮了。以上就是html5中设置按钮的宽度和高度的方法: