以下是一些常用的CSS表单控件样式:
/* 文本框样式 */ input[type="text"], input[type="password"], input[type="email"] { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 3px; font-size: 14px; } /* 单选框和复选框样式 */ input[type="checkbox"], input[type="radio"] { margin-right: 5px; } /* 下拉菜单样式 */ select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 3px; font-size: 14px; background-image: url("drop-down-arrow.svg"); background-position: right center; background-repeat: no-repeat; } /* 按钮样式 */ button, input[type="submit"], input[type="reset"] { padding: 10px; border: none; border-radius: 3px; font-size: 14px; background-color: #007bff; color: #fff; cursor: pointer; } /* 鼠标悬停样式 */ button:hover, input[type="submit"]:hover, input[type="reset"]:hover { background-color: #0062cc; }
上面的样式是基础样式,你可以自由更改这些样式以使其适应你的网站风格。如文本框的样式可以自定义样式、边框颜色、输入框的背景和字体。但需要注意的是,不同的浏览器对表单控件的解析可能会有微小的差异。
在你的网站中,你可以使用类和ID来自定义表单控件的样式。如果你想对表单进行更高级的样式调整,则需要一定的CSS知识和经验。