P粉6148403632023-08-25 12:32:44
你想要的可以透過使用box-decoration-break
來實現,而且它甚至可以與border-radius
一起使用:
.wrapper { width: 200px; } h1 { font-size: 32px; font-family: Tahoma, Helvetica, sans-serif; line-height: 50px; } .header-text { background: #aabbcc; padding-left: 20px; padding-right: 20px; border-radius: 6px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
<div class='wrapper'> <h1> <span class='header-text'> 长文本换行 </span> </h1> </div>