CSS glossary entries for ‘H’
- Has selector
- The has selector (
E[attr]
) is the simplest CSS ‘attribute selector’ available. It matches all elements that contain the given ‘attribute’ in their opening tag, regardless of what ‘values’ that attribute may or may not have set on it. - height
- The
height
property is a CSS property which, by default, sets the vertical distance between the top and bottom ‘content edges’ of selected elements. If thebox-sizing
property is set to a non-default value it can specify the distance between the top and bottom ‘padding edges’ or ‘border edges’ of those elements. - Hyperlink selector
- The hyperlink selector (
E:any-link
) is a CSS4 selector which any element that acts as the source anchor of a hyperlink, e.g.<a>
,<area>
and<link>
elements.