<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
Can´t go further. I removed the text-align settings at .prop and .partner.
Always get the Alert:
Did you remove the text-align property in the .partner CSS rule?
What´s wrong with it?
<Below this line, add a link to the EXACT exercise that you are stuck at.>
body {
background-color: #FFF;
margin: 0;
padding: 0;
}
.header {
background-image: url(“https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-5/htmlcss1-img_canyon.jpeg”);
background-position: center center;
background-size: cover;
height: 700px;
width: 100%;
}
/* Add the ID selector to this CSS rule */
#header-text {
margin: 0 auto;
position: relative;
text-align: center;
top: 25%;
width: 60%;
}
h1 {
color: #FFF;
font-family: ‘Quicksand’, sans-serif;
font-size: 70px;
font-weight: 400;
line-height: 60px;
margin: 0;
}
h2 {
color: #FFF;
font-family: ‘Open Sans’, sans-serif;
text-align: center;
font-size: 28px;
font-weight: 100;
}
h3 {
color: #FFF;
font-family: ‘Quicksand’, sans-serif;
font-size: 28px;
font-weight: 400;
line-height: 30px;
margin: 10px 0px;
text-align: center;
}
h4 {
color: #CCC;
font-family: ‘Quicksand’, sans-serif;
font-size: 16px;
font-weight: 300;
}
p {
color: white;
font-family: ‘Open Sans’, sans-serif;
font-size: 16px;
font-weight: 100;
line-height: 24px;
margin: 0 auto;
text-align: center;
width: 60%;
}
/* Add the class selector to this CSS rule */
.partner{
padding: 20px;
margin: 0 auto;
border-bottom: 1px solid #EEE;
}
.partner img {
position: relative;
top: 6px;
}
.aa-logo {
padding-left: 6px;
}
.main {
background: url(“https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-5/shards.png”);
margin: 0;
padding: 40px;
}
.value-props {
margin: 40px auto;
width: 60%;
}
.prop {
border: 1px solid #FFF;
padding: 40px 0px;
margin: 5px 0px;
}
.prop h2 {
font-family: ‘Quicksand’, sans-serif;
font-size: 24px;
}
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Did you remove the text-align property in the .partner CSS rule?
Replace this line with your code.
<do not remove the three backticks above>