POINTの文字を上下に中央よせ(円形の吹き出しのど真ん中に文字を持っていきたい)したい場合、どうすればいいですか?
<!DOCTYPE html> <html> <head> <style> .balloon3 { position: relative; display: inline-block; margin: 1.5em 15px 15em 0;/*--時計回りで上右下左だね、中2つは特に何も無い感じ*/ padding: 0 5px; width: 90px; height: 90px; line-height: 90px; text-align: center; vertical-align: middle; color: #FFF; font-size: 20px; font-weight: bold; background: #a58eff; border-radius: 50%; box-sizing: border-box; }.balloon3:before {/--疑似要素の直前に要素を追加,これが吹き出しの△を作るわけではないらしい->ちょっとむずい!!->白の三角形/
content: "";
position: absolute;
bottom: -8px;
right: -8px;
margin-top: -15px;
border: 15px solid transparent;
border-left: 15px solid #a58eff;
z-index: 0;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
/--吹き出しはじまり/
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/16 23:23
2021/11/17 00:30
2021/11/17 23:19