#section>.snb .tit{position:relative;}
    #section>.snb .tit h1{color:#2765b1;font-size:20px;text-indent:25px;}


我不确定如何将上述CSS代码应用于jsp页面。它看起来与基本的CSS不同

body {
    background: #00ff00 url("smiley.gif") no-repeat fixed center;
}


种类格式。

最佳答案

您可以这样申请:



<html>
<head>
<style>
 #section>.snb .tit{position:relative;}
    #section>.snb .tit h1{color:#2765b1;font-size:20px;text-indent:25px;}

</style>
</head>
<body>



<div id="section">
<div class="snb">
<div class="tit">
<h1>test text</h1>
</div>
</div>
</div>



</body>
</html>





请参考this,它将帮助您了解CSS选择器。


#section>.snb .tit h1{color:#2765b1;font-size:20px;text-indent:25px;}


它会在ID为'section'的元素中,在所有元素值为'snb'的所有元素中寻找'tit'类的元素中的h1标签。

09-26 06:48