JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
</head>
<body bgcolor="black">
<div class="block">
<div id="t1"><a href="#" class="S1"><div class="p1">1</div></a></div>
<div id="t2"><a href="#" class="S1"><div class="p1">1</div></a></div>
</div>
</body>
</html>
CSS
.block {
width:200px;
margin:0 auto;
}
A.S1 {
display: block;
position: absolute;
top: 0px;
width: 200px;
height: 30px;
}
A.S1:hover {
background: #888888;
}
#t1 {
display: block;
position: absolute;
text-align: center;
top: 10px;
width: 200px;
height: 30px;
}
#t2 {
display: block;
position: absolute;
text-align: center;
top: 40px;
width: 200px;
height: 30px;
}
.p1 {
line-height: 2;
text-align: left;
font-size: 11pt;
color: #ffffff;
font-weight: bolder;
margin-left: 20px;
}
A {
text-decoration: none;
}