code
Posted singeryoung
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了code相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <style> body >p:first-child { background-color:yellow; } </style> </head> <body> <p>这个段落是其父元素(body)的首个子元素。</p> <h1>欢迎访问我的主页</h1> <p>这个段落不是其父元素的首个子元素。</p> <div> <p>这个段落是其父元素(div)的首个子元素。</p> <p>这个段落不是其父元素的首个子元素。</p> </div> <p><b>注释:</b>对于 IE8 及更早版本的浏览器中的 :first-child,必须声明 <!DOCTYPE>。</p> </body> </html>
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 body >p:first-child 6 { 7 background-color:yellow; 8 } 9 </style> 10 </head> 11 <body> 12 13 <p>这个段落是其父元素(body)的首个子元素。</p> 14 15 <h1>欢迎访问我的主页</h1> 16 <p>这个段落不是其父元素的首个子元素。</p> 17 18 <div> 19 <p>这个段落是其父元素(div)的首个子元素。</p> 20 <p>这个段落不是其父元素的首个子元素。</p> 21 </div> 22 23 <p><b>注释:</b>对于 IE8 及更早版本的浏览器中的 :first-child,必须声明 <!DOCTYPE>。</p> 24 25 </body> 26 </html>
<!DOCTYPE html> <html> <head> <style> body >p:first-child { background-color:yellow; } </style> </head> <body> <p>这个段落是其父元素(body)的首个子元素。</p> <h1>欢迎访问我的主页</h1> <p>这个段落不是其父元素的首个子元素。</p> <div> <p>这个段落是其父元素(div)的首个子元素。</p> <p>这个段落不是其父元素的首个子元素。</p> </div> <p><b>注释:</b>对于 IE8 及更早版本的浏览器中的 :first-child,必须声明 <!DOCTYPE>。</p> </body> </html>
以上是关于code的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Gym 101142C:CodeCoder vs TopForces(搜索)