它们之间的区别是什么
<a href="#"><strong>link</strong></a>和
<strong><a href="#">link</a></strong>?哪个示例的语义是正确的?
发布于 2015-09-17 21:56:28
使用css将是更好的方法
<style>
a.boldtext{font-weight:bold;}
/* a{font-weight:bold;} this would apply to all links */
</style>
<a class="boldtext" href="#">link</a>https://stackoverflow.com/questions/32632068
复制相似问题