Hi all,
I’m working on project landing page right now and I’ve reached point where i can’t go through.
I want to stylize social icons in CSS, however I don’t know how to get to my links
.specials a{} - doesn’t work,
a.specials{} - doesn’t work as well
(
)HTML:
<section id="contact">
<div class="socials">
<a href="#">FB</a>
<a href="#">TW</a>
<a href="#">G+</a>
<a href="#">YT</a>
</div>
<h1>contact</h1>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<div class="mail">
<label for="email">Enter email:</label>
<input id="email" name="email" type="email" placeholder="Enter email" required>
</div>
<input id="submit" type="submit" value="Send">
</form>
</section>
</div>```
CSS:
.socials{
display: flex;
justify-content: space-between;
align-items: center;
background: gray;
height: 120px;
}
Thanks for your time
