【问题标题】:How do I center text in colored box with rounded corner with css如何在带有css的圆角彩色框中将文本居中
【发布时间】:2016-03-03 23:09:50
【问题描述】:

我正在尝试使用 css 创建一个“图像”,使其看起来像真实的(附上 .png)框的大小约为 280x30 pix。

我该怎么做?

感谢大家的帮助!

enter image description here

【问题讨论】:

  • 你实际尝试过什么?
  • 您介意接受这个答案吗?

标签: css image text center box


【解决方案1】:

你可以这样做:

HTML:

<div class="box">
  Text Here
</div>

CSS:

.box {
  background: orange;
  border-radius: 5px 5px 0px 0px;
  text-align: center;
  color: white;
  padding: 10px;
}

只需调整宽度,目前是 100% 宽度。

简单。 https://jsfiddle.net/7ank4ueu/

【讨论】:

  • 谢谢安迪!正是我需要的。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2017-09-13
  • 2021-05-03
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多