I have
# myDIV
(
.products1 p()
)
/DIV
Div has general p and class has specific p
How to make separate that class with name like product1 and its p will work?
You see inside DIV is CLASS name. ID has priority over CLASS as CLASS is inside this DIV.
PHP Code:
#mydiv .products1 p { margin: 0; margin-bottom: 10px; text-align: left; }
will this work or it will take general p form #mydiv? is this correct?
will work or it will take general DIV p?