-
Notifications
You must be signed in to change notification settings - Fork 31
ADD HTML ,CSS #20
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
base: master
Are you sure you want to change the base?
ADD HTML ,CSS #20
Conversation
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.
just put some comments to make your code even better next time.
Good job overall, keep going!
} | ||
.container{ | ||
display:flex; | ||
flex-flow:flex-direction; |
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.
The flex-flow CSS property is a shorthand property for flex-direction and flex-wrap.
So use with it the flex-direction values and not the property itself.
height: 40px; | ||
margin-left: 10px; | ||
} | ||
.container >ul>li>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.
you can simply target the a
tag here without the use of >
.ul-child li{ | ||
text-decoration:none; | ||
margin:10px; | ||
list-style-type: none; |
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.
it's better to use the list-style on the ul
tag itself.
background-color: darkcyan; | ||
} | ||
/*end skills*/ | ||
/*start experience*/ |
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.
liked you are using the HTML comments here, always consider using it.
} | ||
.divparent{ | ||
display: flex; | ||
background-color: darkcyan; |
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.
is this the right color as the screenshot?
.form textarea{ | ||
margin: 20px; | ||
height: 70px; | ||
width: 400px; |
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.
consider using cols=" " rows=" " to set the height and width for textarea
tag
i compelet it without grid