gpt4 book ai didi

html - 在网页中查找特定段落

转载 作者:行者123 更新时间:2023-11-28 07:53:04 25 4
gpt4 key购买 nike

我想到达我网页中的特定段落 - 这样对吗?

CSS

div ul li p { /*is this right? */
color:red;
font-family:Arial;
}

<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<div>
<ul>
<li><p>Grab me!</p></li>
<li><p>Me, too!</p></li>
</ul>
</div>
<p>Don't grab me!</p>
</body>
</html>

我看到一些代码到达...

<p>Grab me!</p>
<p>Me, too!</p>

不添加 div ul 作为选择器,像这样:

li p { /* someone do like this */
color:red;
font-family:Arial;
}

最佳答案

如果你只想用 li 和 p 标签更改 css,那么使用这个,

li > p {
color:red;
font-family:Arial;
}

希望它对您有所帮助,或者让我知道,以便我可以帮助您..:)

关于html - 在网页中查找特定段落,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30275565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com