h1中文本前的保证金

时间:2016-03-19 23:32:08

标签: html css

如何在&#34; Sample Text&#34;之前添加一些空间。使用 CSS ?例如&nbsp;但它无法正常工作。背景应该保持原样。我不想在HTML中使用<h1 class="post-title entry-title">Some Text</h1> 有我的小提琴: http://jsfiddle.net/gSVfV/293/

HTML

h1.post-title.entry-title {
background-image: url('http://www.forkingandcountry.com/sites/g/files/g2000004371/f/styles/news_landing_image/public/sample_03.jpg?itok=rk7nkdNu');
color: white;
background-repeat: no-repeat;
}

CSS

{{1}}

1 个答案:

答案 0 :(得分:2)

您可以使用padding-left属性在左侧添加一些填充。请参阅this updated JSFiddle

Mozilla Developer Network了解有关填充的详情。