我很想知道,<img>
在html文件中为标签分配一个类名而不是直接写到css文件中是不是更好?
<div class="column">
<img class="custom-style" alt="" />
<img class="custom-style" alt="" />
<img class="custom-style" alt="" />
</div>
代替
.column img{/*styling for image here*/}
我需要知道这些在网络性能方面有什么区别吗?
更新:
对不起,假设问题是<img>
内部有多个标签,.column div
并且所有图像都使用相同的样式。