Anonymous
Почему пули не появляются?
Сообщение
Anonymous » 02 апр 2025, 12:09
Я работаю над сценарием HTML, и когда я делаю живой сервер, HTM показывает список, но без пулевых точек.
Это выглядит как абзацы прямо под друг другу, и я не знаю, почему они не показывают. Это могло бы связано с моим форматированием CSS, я работаю с другими, но я не вижу ничего, что сделало бы это.
Код: Выделить всё
* {
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;
}< /code>
The Optional Group © 2.30pm - 4.30pm Wednesday
[list]
[*] Aldrin Filbert Maano: 105667785
[*] Giuliano Zuccara: 105910780
[*] Nikolas Popovic: 105920284
[*] Oliver Scott: 105912692
[/list]
Подробнее здесь:
https://stackoverflow.com/questions/795 ... showing-up
1743584973
Anonymous
Я работаю над сценарием HTML, и когда я делаю живой сервер, HTM показывает список, но без пулевых точек. Это выглядит как абзацы прямо под друг другу, и я не знаю, почему они не показывают. Это могло бы связано с моим форматированием CSS, я работаю с другими, но я не вижу ничего, что сделало бы это.[code]* { 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; }< /code> The Optional Group © 2.30pm - 4.30pm Wednesday [list] [*] Aldrin Filbert Maano: 105667785 [*] Giuliano Zuccara: 105910780 [*] Nikolas Popovic: 105920284 [*] Oliver Scott: 105912692 [/list] [/code] Подробнее здесь: [url]https://stackoverflow.com/questions/79550120/why-are-the-bullet-points-not-showing-up[/url]