我有以下内容:
HTML:
<div class="boxy"><img><p>Paragraph testing.</p></div>
CSS:
.boxy{
width= 150px;
background: #E5E5E5;
filter:alpha(opacity=90);
opacity:0.9;
color: #e9e9e9;
font-family: "Century Gothic", arial, sans-serif;
border-radius: 8px;
font-size: 12px;
font-weight: bold;
padding: 2px 2px 2px 5px;
margin:0 auto;
overflow: visible;
}
我注意到在jsfiddle上,虽然我已经将宽度限制在一边,但div显得很长。我还添加了溢出:可见但不起作用。非常感谢任何建议。谢谢!
答案 0 :(得分:0)
变化:
width= 150px;
对此:
width: 150px;