次のテスト コードを使用して、ひし形の形状を作成しようとしています。スパンは標準的な長方形で、2辺がひし形に見えます
**********
* *
******
ただし、前後のセレクターは何もレンダリングしていないようです。私のやり方が間違っているのか、それとも絶対に配置したほうがいいのかはわかりません。
何か案は?
<style>
span {
width:50px;
height:20px;
color:white;
background-color:red;
padding:10px;
}
span:before {
background: url('left_side.png') left center no-repeat;
height:43px; width:22px;
}
span:after {
background: url('right_side.png') right center no-repeat;
height:43px; width:22px;
}
</style>
<html>
<body>
<span>
Some text goes here
</span>
</body>
</html>