xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of CSS display</title>
<style>
span {
display: block;
background: #F0E68C;
}
a {
display: block;
background: #90EE90;
}
</style>
</head>
<body>
<p>
<a href="https://www.codinghub360.com/" target="_top">Visit codinghub360.com</a>
<br>
<span>This span element generates a block box.</span>
</p>
</body>
</html>