HTML
1<h1><span>テキストが入ります</span><br class="hoge"> 2 <span>テキストが入りますテキストが入ります</span> 3</h1>
css
1 2h1{ 3 font-size: 3.6rem; 4 text-align: center; 5 margin: 40px auto 46px; 6} 7h1 span{ 8 background-color: #fff; 9 height: 64px; 10 padding: 5px 10px; 11 border-radius: 8px; 12} 13.hoge{ 14 display: none; 15} 16 17@media screen and (max-width:375px){ 18 19h1{ 20 width: 88%; 21} 22h1 span{ 23 height: 40px; 24} 25.hoge{ 26 display: block; 27} 28 29 30}
spのみ改行はできるのですが、
改行前後のborder-radiusができません。
よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー