My current goal is to achieve this layout (without the red arrows, of course):
https://i.sstatic.net/Mm1rB.png
However, I have encountered a CSS issue that I can't seem to figure out on my own. When I view my page, it appears like this:
https://i.sstatic.net/6tQtk.jpg
Below is the code snippet for the webpage:
body{
font-family:arial;
font-size:12px;
}
#contenedor{
width:1000px;
margin-left:auto;
margin-right:auto;
border:1px solid#666;
}
/* More CSS code... */
#carreras ul {
margin-left:10px;
list-style-type:none;
}
<!doctype html>
<html>
<head>
<title>Infosil</title>
<link rel="stylesheet" href="infosil.css">
</head>
<body>
<!-- HTML code here -->
</body>
</html>
I have identified an issue in the bloque li
and carreras ul
sections of the CSS, and I would greatly appreciate any assistance in resolving it.
Thank you in advance for your help.