📅  最后修改于: 2023-12-03 15:28:17.590000             🧑  作者: Mango
CSS是一种用于描述文档表现层的样式表语言。它包括了诸如字体、颜色、大小、页面布局以及其他视觉外观方面的设计。在页面中,我们可以使用CSS来美化各种页面上的元素,其中包括输入类型(提交、按钮、重置)。
本文将为程序员介绍如何使用CSS来实现输入类型(提交、按钮、重置)的美化效果。
input[type="submit"] {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
input[type="submit"]:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
input[type="button"] {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
input[type="button"]:hover {
background-color: #3e8e41;
}
input[type="button"]:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
input[type="reset"] {
background-color: #f44336;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
input[type="reset"]:hover {
background-color: #d32f2f;
}
input[type="reset"]:active {
background-color: #d32f2f;;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
以上是本文为程序员介绍如何使用CSS美化输入类型(提交、按钮、重置)的内容,在代码片段中,我们给出了每种按钮类型的基础样式、悬停和点击效果。本文希望帮助程序员更加了解如何在项目中使用CSS来实现美观的按钮样式。