Computer >> Computer tutorials >  >> Programming >> CSS

How to style block buttons (full-width) with CSS?


Following is the code to create block buttons with CSS −

Example

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.blockBtn {
   display: block;
   width: 100%;
   border: none;
   background-color: rgb(19, 0, 105);
   color: white;
   padding: 14px 28px;
   font-size: 36px;
   cursor: pointer;
   text-align: center;
   font-weight: bold;
}
.blockBtn:hover {
   background-color: rgb(132, 161, 255);
   color: black;
}
</style>
</head>
<body>
<h1 style="text-align: center;"<Block Button Example</h1>
<button class="blockBtn"<Block Button</button>
</body>
</html>

Output

The above code will produce the following output −

How to style block buttons (full-width) with CSS?