.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
table-layout: fixed;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style>
.modal{
position:absolute;
top: 1rem;
right: 1rem;
width: 24px;
height: 24px;
font-weight: 600;
border-radius: 100%;
cursor: pointer;
color: red;
border: 2px solid red;
text-align:center;
font-size:20px;
}
body{background-color: blue;}
</style>
</head>
<body>
<div class="modal">x</div>
</body>
</html>