I'm working on a HTML script and when I do live server the HTM shows the list but without bullet points.
It sort of looks like paragraphs <p>
right under each other and I don't know why they are not showing. It might to do with my CSS formatting, I am working with others, but I cannot see anything which would make this occur.
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
header li,
header a,
header button {
text-decoration: none;
color: black;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 24px;
}
header {
display: flex;
padding-left: 10%;
padding-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid black;
}
.logo {
cursor: pointer;
height: 75px;
width: auto;
}
.nav_links li {
display: inline;
padding-left: 20px;
padding-right: 20px;
}
.nav_links li a:hover {
color: #194569;
text-decoration: underline;
}
header button {
padding-top: 9px;
padding-bottom: 9px;
padding-left: 25px;
padding-right: 25px;
border: none;
border-radius: 50px;
background-color: rgba(25, 69, 105, 1);
color: whitesmoke;
}
.active {
color: rgba(25, 69, 105, 1);
text-decoration: underline;
}
button:hover {
background-color: rgba(25, 69, 105, 0.8);
}
main {
background-color: #e3dac9;
}
h1 {
text-align: center;
}
#admin h1 {
text-align: center;
margin-bottom: 10px;
}
#admin h2 {
margin-bottom: 10px;
}
#admin p {
margin-bottom: 10px;
}
#admin ul {
list-style-type: square;
margin-left: 20px;
}
dl {
margin: 0;
padding: 0;
}
dt {
font-weight: bold;
}
dd {
margin-left: 20px;
}
#GroupPhoto {
cursor: pointer;
height: 300px;
width: auto;
display: block;
margin: auto;
border: inset 4px black;
}
footer {
display: flex;
flex-direction: column;
padding-left: 10%;
padding-right: 10%;
padding-top: 15px;
padding-bottom: 15px;
justify-content: space-between;
background-color: black;
}
.footer_nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer_links li {
display: inline;
padding-left: 20px;
padding-right: 20px;
}
.footer_links a:hover {
text-decoration: underline;
color: #5fa4a2;
}
footer li,
footer a {
text-decoration: none;
color: whitesmoke;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 20px;
}
#groupMembers ul {
list-style: disc;
}
footer p {
align-self: center;
text-decoration: none;
color: whitesmoke;
font-family: "Montserrat", sans-serif;
font-weight: 500;
padding-top: 10px;
font-size: 15px;
}
.jira_link {
align-self: center;
color: #5fa4a2;
text-decoration: underline;
}
.jira_link:hover {
align-self: center;
color: #8fd4d1;
text-decoration: underline;
}
<section id="GroupMembers">
<h2> The Optional Group © 2.30pm - 4.30pm Wednesday</h2>
<ul>
<li> Aldrin Filbert Maano: 105667785 </li>
<li> Giuliano Zuccara: 105910780 </li>
<li> Nikolas Popovic: 105920284 </li>
<li> Oliver Scott: 105912692 </li>
</ul>
</section>
I'm working on a HTML script and when I do live server the HTM shows the list but without bullet points.
It sort of looks like paragraphs <p>
right under each other and I don't know why they are not showing. It might to do with my CSS formatting, I am working with others, but I cannot see anything which would make this occur.
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
header li,
header a,
header button {
text-decoration: none;
color: black;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 24px;
}
header {
display: flex;
padding-left: 10%;
padding-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid black;
}
.logo {
cursor: pointer;
height: 75px;
width: auto;
}
.nav_links li {
display: inline;
padding-left: 20px;
padding-right: 20px;
}
.nav_links li a:hover {
color: #194569;
text-decoration: underline;
}
header button {
padding-top: 9px;
padding-bottom: 9px;
padding-left: 25px;
padding-right: 25px;
border: none;
border-radius: 50px;
background-color: rgba(25, 69, 105, 1);
color: whitesmoke;
}
.active {
color: rgba(25, 69, 105, 1);
text-decoration: underline;
}
button:hover {
background-color: rgba(25, 69, 105, 0.8);
}
main {
background-color: #e3dac9;
}
h1 {
text-align: center;
}
#admin h1 {
text-align: center;
margin-bottom: 10px;
}
#admin h2 {
margin-bottom: 10px;
}
#admin p {
margin-bottom: 10px;
}
#admin ul {
list-style-type: square;
margin-left: 20px;
}
dl {
margin: 0;
padding: 0;
}
dt {
font-weight: bold;
}
dd {
margin-left: 20px;
}
#GroupPhoto {
cursor: pointer;
height: 300px;
width: auto;
display: block;
margin: auto;
border: inset 4px black;
}
footer {
display: flex;
flex-direction: column;
padding-left: 10%;
padding-right: 10%;
padding-top: 15px;
padding-bottom: 15px;
justify-content: space-between;
background-color: black;
}
.footer_nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer_links li {
display: inline;
padding-left: 20px;
padding-right: 20px;
}
.footer_links a:hover {
text-decoration: underline;
color: #5fa4a2;
}
footer li,
footer a {
text-decoration: none;
color: whitesmoke;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 20px;
}
#groupMembers ul {
list-style: disc;
}
footer p {
align-self: center;
text-decoration: none;
color: whitesmoke;
font-family: "Montserrat", sans-serif;
font-weight: 500;
padding-top: 10px;
font-size: 15px;
}
.jira_link {
align-self: center;
color: #5fa4a2;
text-decoration: underline;
}
.jira_link:hover {
align-self: center;
color: #8fd4d1;
text-decoration: underline;
}
<section id="GroupMembers">
<h2> The Optional Group © 2.30pm - 4.30pm Wednesday</h2>
<ul>
<li> Aldrin Filbert Maano: 105667785 </li>
<li> Giuliano Zuccara: 105910780 </li>
<li> Nikolas Popovic: 105920284 </li>
<li> Oliver Scott: 105912692 </li>
</ul>
</section>
Share
Improve this question
edited Apr 2 at 8:41
DarkBee
15.5k8 gold badges72 silver badges117 bronze badges
asked Apr 2 at 8:39
Shade-OllieS1516Shade-OllieS1516
9
New contributor
Shade-OllieS1516 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
4
|
3 Answers
Reset to default 0The default value for list-style-position
is outside
and you've set the left margin and padding of all your elements to zero.
Consequently the list marker is rendered to the left of the visible page.
Change the margin
, padding
or list-style-position
.
Setting padding: 0;
on all items, removes the default <ul>
padding, so the bullets are rendered outside of the page.
I've added margin and outline on the <body>
, and as you can see the bullets are outside of the body.
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin: 2rem;
outline: 2px solid green;
}
<section id="GroupMembers">
<h2> The Optional Group © 2.30pm - 4.30pm Wednesday</h2>
<ul>
<li> Aldrin Filbert Maano: 105667785 </li>
<li> Giuliano Zuccara: 105910780 </li>
<li> Nikolas Popovic: 105920284 </li>
<li> Oliver Scott: 105912692 </li>
</ul>
</section>
The simplest solution is to not use padding: 0;
on all items.
However, if you must, you can use list-style-position: inside;
on the <ul>
to render the bullets inside the list items:
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
ul {
list-style-position: inside;
}
<section id="GroupMembers">
<h2> The Optional Group © 2.30pm - 4.30pm Wednesday</h2>
<ul>
<li> Aldrin Filbert Maano: 105667785 </li>
<li> Giuliano Zuccara: 105910780 </li>
<li> Nikolas Popovic: 105920284 </li>
<li> Oliver Scott: 105912692 </li>
</ul>
</section>
#GroupMembers ul { list-style: disc; }
your tag id different with css class id
padding-left
, or setlist-style-position: inside
, instead of the defaultoutside
. – C3roe Commented Apr 2 at 8:44id="GroupMembers
vs.#groupMembers ul
– Paulie_D Commented Apr 2 at 8:47