Seems my CSS class defined in the head of the document isn't being recognized or applied. Any idea what I'm missing, or doing wrong?
<html>
<head>
<title>EXAMPLE</title>
<style>
.show_x
{
visibility: visible;
}
//
.hide_x
{
visibility: hidden;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<span class="hide_x glyphicon glyphicon-warning-sign text-danger"></span>
<span class="glyphicon glyphicon-warning-sign text-danger" style="visibility: hidden;"></span>
</body>
</html>
I would expect to see neither warning sign, but I see the first one. The second one is properly hidden.