camerican / NYCDA_SCC16_Jean

NYCDA Summer Code Camp 2016 - Jean's Work
0 stars 0 forks source link

Avoid use of justify around anchors/links #8

Open camerican opened 8 years ago

camerican commented 8 years ago

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:

screen shot 2016-08-27 at 5 53 08 pm

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.