Because you have an anchor link within a container with text-align:justify, you're getting extra whitespace around your link's innerHTML when it drops down to multiple lines:
The class figures wraps your anchor:
<div class="figures"><a class="tech" href="http://www.musicalmeapps.com/">Musical Me Apps</a>
and applies justification:
.figures {
/* ... */
text-align: justify;
}
See if you can change your html/css to only apply text-align:justify for the paragraph content itself.
Because you have an anchor link within a container with
text-align:justify
, you're getting extra whitespace around your link's innerHTML when it drops down to multiple lines:The class figures wraps your anchor:
and applies justification:
See if you can change your html/css to only apply
text-align:justify
for the paragraph content itself.