CSS Class Styling

Example using a CSS class to style elements.

Preview

Code

<style>
.highlight {
  background: yellow;
  padding: 5px;
}
</style>

<p class="highlight">This paragraph uses a CSS class.</p>

More HTML CSS Examples (9)