gpt4 book ai didi

jquery - 为一个 div 元素重置多个 css 样式

转载 作者:技术小花猫 更新时间:2023-10-29 10:20:18 24 4
gpt4 key购买 nike

我的问题是是否可以为单个 div 重置 css 样式(很多都关闭了它们)以及该 div 中包含的所有元素。

我在问,因为我找到了一个 jquery shoutbox 的教程,它有自己的CSS 文件。我不能只将样式复制到我自己的 css 文件,因为它会搞砸页面上已设置样式的其余部分。

我想过使用 divwrapper 并将所有这些重置仅应用于那个。我只是不确定这是否可能

我只知道这样

#divwrapper td{ set styles }

@CHARSET "UTF-8";
/******* GENERAL RESET *******/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td {
border:0pt none;
font-family:inherit;
font-size: 100%;
font-style:inherit;
font-weight:inherit;
margin:0pt;
padding:0pt;
vertical-align:baseline;
}

谢谢,理查德

最佳答案

试试这个:

div.foo, div.foo *
{
// your styles
}

这会将样式应用到类为“foo”的div 及其所有后代。星星 (*) 被称为 universal selector ,毫不奇怪,它会选择任何类型的元素。

或者只针对直系 child :

div.foo, div.foo > *
{
// your styles
}

关于jquery - 为一个 div 元素重置多个 css 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/974980/

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