如何将带圆角的彩色框中的文本居中与css

时间:2016-03-03 15:03:58

标签: css image text center box

我正在尝试用css创建一个看起来像真实的“图像”(se附加.png)盒子的大小约为280x30像素。

我该怎么做?

感谢您的帮助!

enter image description here

1 个答案:

答案 0 :(得分: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%。

Simples。 https://jsfiddle.net/7ank4ueu/