2011-03-29 45 views

回答

4

CSS

#parent {} /* add style to the parent element */ 
#parent pre {color: red} /* to the pre */ 

HTML

<div id="parent"> 
    <pre>aaa</pre> 
</div> 
0

使用此選擇div#someId pre ...............

div#someId pre 
{ 
    width: ... 
} 
1

這樣? ?

div#id pre { styles here }