-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JayLara Homework Submission -base #16
base: master
Are you sure you want to change the base?
Conversation
} | ||
|
||
body { | ||
width: 900px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting the width with a hardcoded px value will make this site unresponsive. Try using margin or % instead.
h1 { | ||
font-size: 65px; | ||
padding: 0px; | ||
margin: 10px 0px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whenever you are using 0 as a value you do not need to specify the units. 0px = 0% = 0.
margin: 10px 0px; | ||
} | ||
|
||
h1 a { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Watch your indentations!
color: #eae2de; | ||
font-size: 40px; | ||
padding: 0px; | ||
margin: 70px 0px 10px 0px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shorthand way to write this is margin: 70px 0 10px
.
|
||
img { width: 100%;} | ||
article { | ||
width: 850px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, set the width with a % so that you are not limiting your site to break on a mobile device.
line-height: 26px; | ||
} | ||
|
||
article p::first-letter { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!!
No description provided.