Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
虽然我指定了“border: 1 px”,但在 Firebug 中检查会发现一些额外的附加值。它来自哪里?我在 node.js 上使用 ejs。
正如您在提供的图像中看到的那样,显然您有一个名为的样式表文件reset.css和另一个以 . 开头reserv和结尾的样式表文件js.css。
reset.css
reserv
js.css
你把它们添加到你的页面了吗?您是否将内联样式应用于您的元素?
检查您的脚本以查看功能是否在页面加载后应用此边框..
如果您希望您的样式“赢得”内联样式,请添加!important到规则中。像:
!important
div { border: 1px solid black !important; }