<div class="sait">
<div class="sait__text sait__text--one">left</div>
<div class="sait__text sait__text--two">right</div>
</div>
.sait {
display: flex;
flex-direction: row;
justify-content: space-between;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
</head>
<body>
+mixin
+mixin
+mixin
</body>
</html>
.circle {
position: relative;
}
.circle::before,
.circle::after {
position: absolute;
content: "";
top: 5px;
with: 100px;
height: 0;
border-top: 1px dotted white;
}
.circle::before {
left: -100%;
}
.circle::after {
right: -100%;
}
<header class="header clearfix">
<div class="left"></div>
<div class="right-top"></div>
<div class="right-bottom"></div>
</header>
.left {
float: left;
width: 33%;
height: 300px;
background: green;
}
.right-top,
.right-bottom {
float: right;
width: 67%;
}
.right-top {
height: 100px;
background: red;
}
.right-bottom {
height: 200px;
background: blue;
}
.clearfix::after {
display: block;
content: '';
clear: both;
}