I am working on an HTML document that includes a DIV tag with specific styling:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>DIV Tag</title>
<style type="text/css">
.block1 {
width: 200px;
background: #ccc;
padding: 5px;
padding-right: 20px;
border: solid 1px black;
float: left;
}
</style>
</head>
<body>
<div class="block1">Text Content</div>
</body>
</html>
How can I adjust the CSS style to achieve the desired outcome?