background-color #4CAF50; color #fff; border none; padding 10px 20px; text-align center; text-decoration none; font-size 16px;
这些属性是用于设置按钮的样式和行为。
- background-color: #4CAF50; 设置按钮的背景颜色为#4CAF50,即深绿色。
- color: #fff; 设置按钮的文字颜色为#fff,即白色。
- border: none; 设置按钮的边框为无。
- padding: 10px 20px; 设置按钮的内边距为10像素顶部和底部,20像素左右。
- text-align: center; 设置按钮内的文本居中对齐。
- text-decoration: none; 设置按钮内的文本无下划线。
- font-size: 16px; 设置按钮内的文本字体大小为16像素。
- border-radius: 4px; 设置按钮的边框圆角半径为4像素。
- cursor: pointer; 设置当鼠标悬停在按钮上时,鼠标指针的样式为手型,表示可以点击。
原文地址: http://www.cveoy.top/t/topic/hWEc 著作权归作者所有。请勿转载和采集!