擬似要素を使って、Q&Aを作成しています。
アイコンの下に文字が割りこんでしまっていて、この要素を下に潜り込まないCSSを作りたいのですが方法が思いつきません。どなたか知恵をお貸しいただけないでしょうか。
HTML
1 <li class="item"> 2 <p class="question bold">質問A</p> 3 <p class="answer">回答です回答です回答です回答です回答です回答です回答です回答です回答です回答です回 4 です</p> 5 </li>
CSS
1.question{ 2 margin-bottom: 30px; 3 height: 45px; 4} 5 6.answer{ 7 color: #000; 8} 9 10.question:before{ 11 content: ""; 12 background: url(images/question_ico.png) no-repeat left top; 13 background-size: 45px; 14 width: 55px; 15 height: 45px; 16 display: inline-block; 17 vertical-align: middle; 18} 19 20.answer:before{ 21 content: ""; 22 background: url(images/answer_ico.png) no-repeat left top; 23 background-size: 45px; 24 width: 55px; 25 height: 45px; 26 display: inline-block; 27 vertical-align: middle; 28}
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー