2、在test.html文件中,使用button标签创建一个按钮。
3、在test.html文件中,设置button标签的class属性为mybtn。
4、在css标签内,通过class定义button的样式,设置它的宽度为50px,高度为50px,实现正方形。
5、在css标签内,再设置在设置忽略按钮的背景颜色为红色,文字颜色为白色,按钮无边框。
6、在浏览器打开test.html文件,查看实现的效果。css是一种用来表现HTML或XML等文件样式的计算机语言,是描述标记语言页面格式的标准。
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
} <button>Go</button>