I created the following image to be rendered under all h1 title tags in my website. Trouble is, every tutorial I find online discusses border image property as a all around border.
All I want to achieve is to get this one small image underneath the title, once. No repeat. centered. According to this http://www.css3.info/preview/border-image/ there is a property called border-bottom-image. But I can't seem to get it to display properly.
Google chrome developer tools tells me that this is an unknown property name. If I can't achieve this with the following css3, how can I achieve it?
.entry-title{
border-bottom-image: url(images/title-borderbottom.jpg);
}

-webkit-border-bottom-imageor use pseudo element:afterborder-imageis what you want, primarily because thecenter no-repeatdirective you want is not supported (the way you want it;stretchis closest, but it's not really the same). This is as close as I got: jsfiddle.net/mh66rvbo You could usebackground-imageinstead, with a bottom padding, if that doesn't disrupt other background styles on the elements. See this very explanatory entry from CSS Tricks: css-tricks.com/understanding-border-imageborder-bottom-style: solid;?