div类中的标记

时间:2017-02-28 21:24:53

标签: html css class tags

我可以将<div class="test">放在<div class="test"> <a href="#">test</a> </div>

中吗?

我很清楚0784848236 我对该代码的问题是,a标签为我在css中留下了一些样式,我很乐意尽可能缩小代码。

1 个答案:

答案 0 :(得分:0)

绝对!锚没有理由不能存在于div中:

<div class="test">
  <a href="#">test</a>
</div>

完全有效的语法。

<body>
  <a class="test2" href="#">test</a>
</body>

也是完全有效的语法。

这真的只取决于你想要如何应用你的造型。您可以使用:

.test a {
  // Style the whole DIV, which can contain multiple <a> tags
}

或者:

.test2 {
  // Style the <a> tags that match the class `test2`.
}

希望这有帮助! :)