Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
.btn-group .button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  float: left;
}
.btn-group .button:hover {
  background-color: #3e8e41;
}
</style>
</head>
<body>
<h2>Группы кнопок</h2>
<p>Удалите поля и разместите кнопки, чтобы создать группу кнопок:</p>
<div class="btn-group">
  <button class="button">Кнопка</button>
  <button class="button">Кнопка</button>
  <button class="button">Кнопка</button>
  <button class="button">Кнопка</button>
</div>
<p style="clear:both"><br>Не забудьте очистить поплавки после этого, иначе этот элемент p также будет плавать рядом с кнопками.</p>
</body>
</html>