display: flex;
justify-content: center;
p {
width: 400px;
}
.credits {
width: 343px;
}
так-же прошу помочь с белыми полосами по бокам?
Как переместить объекты так: один слева другой справа
.form {
position: relative;
display: flex;
justify-content: space-between;
margin: 40px;
padding: 30px;
border: 1px solid gray;
}
.form::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
display: block;
width: 30px;
height: 30px;
border: 1px solid red;
border-radius: 50%;
box-shadow: 0 0 0 10px #fff;
background: #fff;
/* и ваша картинка*/
}
.btn {
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%, 50%);
padding: 0.5em 1em;
box-shadow: 0 0 0 10px #fff;
background: #f00;
border: 0;
color: #fff;
}
<form class="form" action="">
<input type="text">
<input type="text">
<input type="text">
<button class="btn" type="submit">btn</button>
</form>
Для того, чтобы прижать нижний блок с иконками (у меня он<div class="footer_block">
) я задаю<div class="content_block"> flex: 1 0 auto;