0

我在具有特定类的锚标记上使用以下 CSS。工作正常,除了长链接文本被强制换行。我想这与宽度有关...

a.interactive {
background:url(../images/icons/icon_interactive.png) left center no-repeat;
padding-left:30px;
height:25px;
width:25px;
display:inline-block;    
text-decoration: none;
vertical-align:text-center;
}
4

3 回答 3

0

您需要使用 100% 宽度或设计允许的最大宽度来最大化宽度。

于 2013-02-01T05:19:39.117 回答
0
a.interactive {
    /*...*/
    white-space: nowrap;
}
于 2013-02-01T06:31:17.730 回答
0

尝试这个

a.interactive {
background:url(../images/icons/icon_interactive.png) left center no-repeat;
height:100%;
width:100%;
display:inline-block;    
text-decoration: none;
vertical-align:text-center;
}
于 2013-02-01T03:41:56.983 回答