在响应中span
未显示完整背景。
它显示适当的高达836像素后,它包裹在另一行,我希望只包装文本而不是背景。
如何显示完整背景?
段
span{
background: red;
color: white;
padding: 50px;
border-radius: 5px;
text-align: center;
font-family: arial;
font-size: 20px;
}

<span>In responsive span is not showing full background. How to show full background?</span>
&#13;
答案 0 :(得分:1)
将inline-block
设置为span
,因为span
是内联元素
span{
background: red;
color: white;
padding: 50px;
border-radius: 5px;
text-align: center;
font-family: arial;
font-size: 20px;
display:inline-block
}
&#13;
<span>In responsive span is not showing full background. How to show full background?</span>
&#13;