2011-03-29 44 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 }