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.
我一直在做一些自由的 html/css 工作,最近我遇到了 a div:class"innertube",它通常嵌套在div:id. 我的问题是什么是内胎,为什么要使用它?
div:class"innertube"
div:id
该class属性用于区分 CSS,嗯,类。例如,如果您有<div class="outertube">and <div class="innertube">,这两个div元素将应用不同的格式。由程序员决定给类起什么名字。
class
<div class="outertube">
<div class="innertube">
div
http://www.w3.org/TR/html401/struct/global.html#h-7.5.2