如何将背景颜色添加到居中文本的宽度?
我想这很简单,但我一直无法弄清楚如何做到这一点。我想将一些文本放在 div 中居中,然后将背景颜色应用于文本的宽度,而不必输入 div 的宽度(以便背景颜色自动为文本的宽度
)我的 CSS 看起来像这样:
.heading {
text-align: center;
background-color:red;
}
它使文本居中,但使页面上整行的背景变为红色。
当我添加 display:inline
时,背景只是文本的宽度,但文本不再居中。
有人可以帮忙解决这个问题吗?
谢谢,
尼克
I imagine this is straight forward, but I haven't been able to work out how to do it. I would like to center some text in a div, and then apply a background color to just the width of the text, without having to enter a width for the div (so that the background color is automatically the width of the text)
At the moment my CSS looks like this:
.heading {
text-align: center;
background-color:red;
}
which centers the text, but makes the background of the entire line on the page red.
When I add display:inline
the background is just the width of the text, but the text is no longer centred.
Could someone help with this?
Thanks,
Nick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将文本包裹在 .heading 内,然后:
Wrap your text inside .heading in a span and then:
仅使用一个 DIV 无法实现这一目标。您可能需要将文本包含在 SPAN 中并为其应用背景颜色。例如 HTML 代码将如下所示:
CSS 代码将如下所示:
You won't be able to achieve this with one DIV only. You may need to enclose text into SPAN and apply background color to it. For example HTML code will look like:
And CSS code will look like: