#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;
}
种类的格式。
答案 0 :(得分:1)
您可以这样申请:
<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>
&#13;
请参阅this它有助于您了解css选择器。 在
#section>.snb .tit h1{color:#2765b1;font-size:20px;text-indent:25px;}
它在&#39; tit&#39;中寻找元素中的h1标签。所有元素中的类,类值为&#39; snb&#39;在带有ID&#39;部分&#39;。
的元素中