<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>How to Write a Good Report</title>
<style type="text/css">
div.weather strong:first-child {color:red;}
</style>
</head>
<body>
<div class="weather"&g
extends ../header2.pug
block unique-css
include ../../public/css/mentor/mentiler.css
block unique-content
.main
each menti, index in mentiler
.menti= menti
script
include ../../public/js/mentor/mentiler.js
这是我的pug代码,我希望访问单击的.menti类元素。
each menti, index in
我有一篇包含画廊的文章,但我不希望文章的h2标签的样式会影响画廊中的H2。我尝试过使用:not()伪类,但是我似乎不能用它来解决这个问题。
我想知道在不覆盖h2样式的情况下是否有可能。(在本例中,它是h2,但实际上它涉及很多标记和大量css)。
示例
HTML:
<h2>This is a default h2</h2>
<div class="article">
<h2>This should use article h2 styling</h2>
<p>Paragraph 1</p>
我有一个查询,它提取产品类别并在div中列出它们。现在,我想向前3条记录提取的css类添加一个页边距底部。
css
.icons-box {padding: 20px 10px 10px 10px;}
php:
$cat_list = "SELECT *
FROM tbl_category
WHERE cat_parent_id >0 ORDER BY cat_id ASC";
$result_list = dbQuery($cat_list);