gpt4 book ai didi

html - 如何将 CSS 应用于不在特定标签内的文本?

转载 作者:行者123 更新时间:2023-12-05 05:16:56 24 4
gpt4 key购买 nike

<html>
<head>
<style>

(All but div) {
padding-left: 100px;
}

</style>
</head>
<body>

<div style="background-color: blue;">This is a div</div>
This is not a div

</body>
</html>

在不移动实际蓝色 div 本身的情况下,我可以用什么替换(除 div 之外的所有内容)以在文本“这不是 div”的左侧应用 100px 填充?

Example I quickly threw together in ms paint

最佳答案

“This is not a div”没有 CSS 选择器,因为 CSS 选择器不能针对 DOM #text 节点,只能针对元素和伪元素(例如 ::before::first-line)。

但是你可以这样做:

body {
padding-left: 100px;
}

body > div {
margin-left: -100px;
}

关于html - 如何将 CSS 应用于不在特定标签内的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49887923/

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