JSFiddle - React, Tailwind, and code Playground
by ils_user
HTML
<!doctype html>
<html>
<head>
<title>Page</title>
</head>
<body>
<div class="footer">
<ul class="menu">
<li>Один</li>
<li>Два</li>
<li>Три</li>
<li>Четыре</li>
</ul>
<div class="buttons">
<a href="..."><img src="..."></a><a href="..."><img src="..."></a><a href="..."><img src="..."></a>
</div>
</div>
</body>
</html>
CSS
* {
margin: 0;
padding: 0;
}
.footer {
background: lightblue;
overflow: hidden;
}
.menu {
float: left;
list-style-type: none;
line-height: 50px;
}
.menu > li {
float: left;
margin-left: 10px;
}
.buttons {
float: right;
}
.buttons img {
width: 50px;
height: 50px;
}