H1标题的背景图像

时间:2013-03-31 14:38:34

标签: html css background-image

在我的wordpress主题页面标题<?php the_title(); ?>

我的Css:

#page h1.pagetitle {
      width:auto;
      text-align:left;
      font-size:30px;
      padding:25px 40px 25px 0px;
      text-transform:uppercase;
    }

     #page h1.pagetitle span{
     background:#202020; 
     padding:5px 40px 5px 10px;
     }

HTML:

<h1 class="pagetitle"><span><?php the_title(); ?></span></h1> 

我希望像此示例http://www.123rf.com/photo_12816420_green-arrow-ribbon-on-wooden-desk.html

这样的箭头功能区等背景图片

我可以直接放置背景图像或使用带有repeat-x的背景图像。但我的页面标题文本跨度宽度始终无法修复。每个页面都有不同的页面标题。

所以我想使用两个Image部分 :使用repeat-x和text在文本后面的矩形 :第二个是文本字符串结尾后的箭头(三角形)。

这样我可以获得任何页面标题文本的箭头图像。 建议我怎样才能得到这个?

1 个答案:

答案 0 :(得分:4)

我经常使用这种技术:

h1{
    background: url('http://i49.tinypic.com/2zs1z79.png') 0 0 repeat-x;
    position:relative;
    display: inline-block;
    margin:0 25px;
    padding:0 10px;
    height:40px;
}

h1:before,h1:after {
    content:'';
    display: inline-block;
    position:absolute;
    top: 0;
    right: -20px;
    width: 20px;
    height: 100%;
    background:inherit;
    background-position:100% 100%;
}
h1:before {
    left:-20px;
    background-position: 0 100%;
}

我使用:before:after作为头部和尾部以及图像的精灵。它很好,干净而且灵活(足够)。

演示:http://jsfiddle.net/pavloschris/5Qvn7/