我有 main.css 文件,我在其中定义输入的标准大小:
/* Describe general input element sizes */
input[type="text"], input[type="password"]
{
width: 180px;
border: 1px solid #aaa;
}
此 CSS 在页面标题中引用。稍后在页面中我定义以下内容:
<style>
.shortField {
width: 50px;
}
</style>
我将类“shortField”分配给我的输入框,但未应用大小。F12截图: