Я создаю веб-сайт, на котором я хотел бы иметь некоторые границы помимо текста.А над ним несколько значков.Я хочу, чтобы граница занимала только текстовую область текста LinkedIn, а не весь класс.Я пробовал с position: absolute
, но ничего не получилось.
.contactSocial {
display: flex;
justify-content: space-between;
align-items: center;
}
.facebook:before {
display: flex;
justify-content: center;
content: "\f39e";
font-family: "Font Awesome 5 Brands";
font-weight: 900;
color: blue;
}
.linkedIn {
border-right: 2px solid green;
border-left: 2px solid green;
}
.linkedIn:before {
display: flex;
justify-content: center;
content: "\f0e1";
font-family: "Font Awesome 5 Brands";
font-weight: 900;
color: blue;
}
.instagram:before {
display: flex;
justify-content: center;
content: "\f16d";
font-family: "Font Awesome 5 Brands";
font-weight: 900;
color: blue;
}
<head><link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
</head>
<div class="contactSocial">
<div class="facebook">Facebook</div>
<div class="linkedIn">LinkedIn</div>
<div class="instagram">Instagram</div>
</div>