text-hide - Hides text - HTML CSS Bootstrap Class List

HTML CSS examples for Bootstrap Class List:text-hide

Description

text-hide - Hides text

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/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head><!--  www  . ja va  2s  .  com-->
<body>

<div class="container">
  <h2>Example</h2>
  <p>This is a test. This is a test. This is a test.</p>
  <div class="text-hide">Some text inside a div element.</div>
</div>

</body>
</html>

Related Tutorials