My CSS (SCSS) below show me clearly defining my height and width to 100%.
/*
* SCSS
*/
a#logo {
width: 100%;
height: 100%;
text-decoration: none;
span#first-name {
font-size: 4em;
color: $gray;
display: inline;
}
span#last-name {
font-size: 4em;
color: $yellow;
display: inline;
}
}
/*
* HTML
*/
<a id="logo" href=""><span id="first-name">justin</span><span id="last-name">BEAUDRY</span></a>
My problem is that the "a" element is rendering as "auto" even though my SASS clearly defines that the height and width be 100%.
SOLVED
/*
* SCSS
*/
a#logo {
width: 100%;
height: 100%;
display: block;
text-decoration: none;
span#first-name {
font-size: 4em;
color: $gray;
display: inline;
}
span#last-name {
font-size: 4em;
color: $yellow;
display: inline;
}
}