2015-05-16 57 views

回答

-1

右鍵那麼首先你不能插入任何標記語言,但你可以使用content:"";

+0

這不應該被拒絕,因爲它是一個真正的語句標記語言不能使用CSS插入 – DCdaz

2

您可以使用:before:after僞元素這樣的插入內容。

p:before { 
 
    color: red; 
 
    display: block; 
 
    content: 'this is from css'; 
 
}
<p>hello there</p>

0

了,你能做到這一點:before或:after僞元素呢?

div.class-name:after { 
    content: 'text goes here'; 
    display: block; 
    [style further as necessary] 
} 
相關問題