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.
您需要添加display: inline-block;到您的锚选择器。锚点根据定义是内联元素,在它们被定义为块级或内联块元素之前不接受宽度、高度、边距等。
display: inline-block;
我认为您最好这样做display:block;,float:left;因为display:inline-block;并非所有浏览器都支持。
display:block;
float:left;
display:inline-block;