Skip to content

Latest commit

 

History

History

adjacent-selector

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

CSS Adjacent Selector

Adjacent Selector is used to select the element which is next to it.

Plus (+) is used to select the elements. +

h2 + p {
    font-size: large;
    font-weight: bold;
}