Element Selector

Select all elements of a specific HTML tag using an element selector.

Preview

Code

<style>
p{
color:#2563eb;
}
</style>

<p>This paragraph is selected using an element selector.</p>
<p>All paragraph elements are styled.</p>

More CSS Selectors Examples (7)