我们如何根据背景设置文本的位置?

时间:2016-11-29 16:01:45

标签: html css

我想根据背景设置文本的位置,而不是右对齐或左对齐,如100px,20px。



h1{
    background-color:rgb(200, 200, 200);
    width:100%;
  }

<h1>TEXT</h1>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

显示:h1的内联块以及填充并删除100%宽度,如下所示:

h1 {
   display: inline-block;
   background-color: rgb(200, 200, 200);
   padding; 20px 100px;
}