📜  css > 符号 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:56.854000             🧑  作者: Mango

代码示例1
The ‘>’ symbol is called the child selector. CSS rules will be applied to 
elements which are direct children of the particular element.

Example
The following code will target all the 

tags which are immediate children of container

. div.container > p { border-bottom: 1px dashed black; }