-
Notifications
You must be signed in to change notification settings - Fork 1
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
Css item element #25
base: main
Are you sure you want to change the base?
Css item element #25
Conversation
.gitignore
Outdated
@@ -1,108 +0,0 @@ | |||
# Logs |
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.
Don't delete this file!
index.html
Outdated
</head> | ||
<h1>Students list</h1> | ||
<ul> | ||
<li><a href="/Full stack/projects/netcraft-11-2022/DavidLevy/index.html">Lecture - David Levy</a></li> |
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.
This is not the valid index file
item-element.css
Outdated
@@ -0,0 +1,12 @@ | |||
li { |
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.
Prefer to use a class and not list item element.
@@ -0,0 +1,12 @@ | |||
.li-style { |
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 class name should be logical. E.g. student-item.
No description provided.