当子 div / jQuery 中存在特定类时,对 div 进行不同的样式

发布于 2024-12-10 22:45:53 字数 608 浏览 0 评论 0原文

基本上,我需要 div.content 具有 15px 的默认填充,除非 div 具有子 div.products-list。如果 .products-list 的子 div 存在,我需要 div.content 没有填充。我阅读并看到了几种使用jquery的解决方案,但似乎没有效果。我的布局是这样的:

<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>
$(document).ready(function(){
$(".products-list").parents("div.content").css("padding", "0");
});
</script>

<style>
.content {
padding: 15px;
}
</style>

</head>

<body>
<div class="content">
<div class="products-list"></div>
</div>
</body>

感谢您的帮助!

Basically I need div.content to have a default padding of 15px EXCEPT for when the div has the child div.products-list. If the child div of .products-list exists I need div.content to have no padding. I read and saw several solutions using jquery, but it seems to have no effect. My layout is like this:

<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>
$(document).ready(function(){
$(".products-list").parents("div.content").css("padding", "0");
});
</script>

<style>
.content {
padding: 15px;
}
</style>

</head>

<body>
<div class="content">
<div class="products-list"></div>
</div>
</body>

Thanks for any help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

莫言歌 2024-12-17 22:45:53
if($("div.product-list div.content").length > 0) {
    $("div.product-list").css('padding', 0);
}
if($("div.product-list div.content").length > 0) {
    $("div.product-list").css('padding', 0);
}
夕嗳→ 2024-12-17 22:45:53

您可以使用一些 CSS 技巧来通过在内部 div 上使用负边距来“消除”填充:

div.content {
    padding: 15px;
}
div.products-list {
    margin: -15px;
}

http:// jsfiddle.net/mblase75/2HRUc/

You could use a little CSS trickery to "eliminate" the padding by using negative margins on the inner div:

div.content {
    padding: 15px;
}
div.products-list {
    margin: -15px;
}

http://jsfiddle.net/mblase75/2HRUc/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文