CSS Multiple Classes Selector

  • Post category:CSS

Get the code of CSS Multiple Classes Selector and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<h1 class="center">Heading</h1>
<p class="center">Paragraph 1</p>
<p class="center large">Paragraph 2</p>
.center {
  text-align: center;
}
.large {
  font-size: 50px;
  font-weight: bold;
  color: cyan;
}