.initialism - Displays the text inside an <abbr> element in a slightly smaller font size - HTML CSS Bootstrap Class List

HTML CSS examples for Bootstrap Class List:initialism

Description

.initialism - Displays the text inside an <abbr> element in a slightly smaller font size

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
</head><!-- w ww .  j  a v  a 2 s . c o  m-->
<body>

<div class="container">
  <h2>Typography</h2>
  <p>The <abbr title="CSS">CSS</abbr> HTML</p>
  <p>The <abbr title="CSS" class="initialism">CSS</abbr> HTML</p>
</div>

</body>
</html>

Related Tutorials