<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Inhouse CSS Pseudo-Elements - RJM Programming - June, 2020</title>
<style>

.divbelow:andbelow { background-color: rgba(255,255,0,0.5); }
.divabove:andabove { background-color: rgba(0,255,255,0.5); }
.divleft:andleft { background-color: rgba(255,0,255,0.5); }
.divright:andright { background-color: rgba(127,127,127,0.5); }

</style>
<script type='text/javascript' src='./inhouse_pseudo_elements.js'></script>
</head>
<body style='background-color:transparent;'>
<h1>Inhouse CSS Pseudo-Elements</h1>
<h3 id=myh3>RJM Programming - June, 2020</h3>
<div class=divleft onmouseover="lookformo(this,(false != true));" onmouseout="lookformout(this,(false != true));" onclick="lookfor(this,(false != true));" id=left style="position:fixed; left:26%; top:30%; width: 12%; height: 40%; background-color: yellow;">Left<br>:andleft</div>
<div class=divabove onmouseover="lookformo(this,(false != true));" onmouseout="lookformout(this,(false != true));" onclick="lookfor(this,(false != true));" id=above style="position:fixed; left:38%; top:30%; width: 12%; height: 40%; background-color: cyan;">Above<br>:andabove</div>
<div class=divbelow onmouseover="lookformo(this,(false != true));" onmouseout="lookformout(this,(false != true));" onclick="lookfor(this,(false != true));" id=below style="position:fixed; left:50%; top:30%; width: 12%; height: 40%; background-color: magenta;">Below<br>:andbelow</div>
<div class=divright onmouseover="lookformo(this,(false != true));" onmouseout="lookformout(this,(false != true));" onclick="lookfor(this,(false != true));" id=right style="position:fixed; left:62%; top:30%; width: 12%; height: 40%; background-color: pink;">Right<br>:andright</div>
</body>
</html>