2014-10-30 62 views

回答

0

使用像這樣的僞元素。

Codepen Demo

h2 { 
 
    position: relative; 
 
    overflow: hidden; 
 
    width:80% /* not required */ 
 

 
} 
 

 
h2 span { 
 
    display: inline-block; 
 
    width:50%; 
 
} 
 

 
h2:after { 
 
    content: ""; 
 
    position: absolute; 
 
    top:50%; 
 
    border: 3px red; 
 
    border-style:dashed; 
 
    width: 9999px; /* some huge width */ 
 
}
<h2> 
 
<span>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Saepe error ea nam corporis hic libero culpa excepturi perspiciatis, necessitatibus</span> 
 
</h2>

+0

這工作!謝謝您的幫助。 – tiepolo 2014-10-30 15:46:13

+0

很高興爲您提供幫助。如果你願意,upvote&/或標記爲已解決。 – 2014-10-30 16:08:35