。あなたはこのrotate
のようなCSSで行うことができます。
css
#C{
height:200px;
width:200px;
background:red;
border:1px solid #000;
position:relative;
}
.arrow{
height: 20px;
width: 20px;
margin-left:30px;
margin-top:-11px;
background:red;
-moz-transform:rotate(45deg);
-webkit-transform:rotate(45deg);
border-right:1px solid #000;
border-bottom:1px solid #000;
position:absolute;
bottom:-10px;
left:20px;
}
HTMLに使用できる
<div id="C"><span class="arrow"></span></div>
:後、:代わりにスパンの前に。
<div class="comment">
<div>
<p>Here is a comment</p>
</div>
</div>
:あなたには、いくつかの:before
と:after
魔法を使用して、すなわち、フィルタ
filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476); /* IE6,IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"; /* IE8 */
CHECK THIS http://jsfiddle.net/sandeep/Hec3t/7/
ノエ '-moz-変換-rotate'は、ブラウザ固有の拡張機能であること。 –
もう1つは素敵に見えます。+1 –
私はCSSから矢印を作ることができないと知りませんでした。 (+1)ありがとう – Starx