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"通常は a 内にネストされていdiv:idます。私の質問は、インナーチューブとは何ですか?なぜそれが使用されるのですか?
div:class"innertube"
div:id
このclass属性は、CSS、まあ、クラスを区別するために使用されます。たとえば、とがある場合<div class="outertube">、<div class="innertube">これら2つのdiv要素には異なるフォーマットが適用されます。クラスに付ける名前を決めるのはプログラマー次第です。
class
<div class="outertube">
<div class="innertube">
div
http://www.w3.org/TR/html401/struct/global.html#h-7.5.2