■やりたいこと
写真みたいに左上に吹き出しがあるチャット風ボックスを作りたい。
■行動したこと
左下ならできたが左上ができない。
html
1<div>aaaaa</div> 2
css
1div { 2 position: relative; 3 font-family: Arial; 4 font-size: 20px; 5 line-height: 120px; 6 text-align: center; 7 width: 250px; 8 height: 120px; 9 border-radius: 10px; 10 padding: 0px; 11 border: #000 solid 4px; 12} 13 14div::before { 15 content: ""; 16 position: absolute; 17 width: 0; 18 z-index: 0; 19 border-style: solid; 20 border-width: 0 44px 24px 0; 21 border-color: transparent #000 transparent transparent; 22 top: 25%; 23 left: -48px; 24 margin-top: -14px; 25 display: block; 26} 27 28div::after { 29 content: ""; 30 position: absolute; 31 display: block; 32 width: 0; 33 z-index: 1; 34 border-style: solid; 35 border-width: 0 40px 20px 0; 36 border-color: transparent #000000 transparent transparent; 37 top: 25%; 38 left: -40px; 39 margin-top: -10px; 40}
回答1件
あなたの回答
tips
プレビュー