- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个水平菜单,但我无法找到使它 100% 适合居中容器页面(从左侧到右侧)的方法。我还希望每个 html 主列表 都位于水平菜单的左侧。
我认为这与我的 CSS 代码有关...
现在我的网站是这样的:Link to image
body {
background-color: #2A2A2A;
}
h1 {
color: #FCFCFC;
padding-left: 8px;
background-color: 494949;
width: 100%;
height: 50px;
margin: 0px 0px 7px 0px;
/* margen arriba , margen dercha, margen abajo, margen izquierda */
border-bottom: 2.5px solid #C69AD3;
/*sombra color del solido*/
font-family: 'Oswald', sans-serif;
text-shadow: 3px 3px #353535;
font-size: 200%;
}
.center {
margin: auto;
width: 100%;
padding: 10px;
text-align: left;
text-align: bottom;
}
p {
color: white;
font-family: 'Oswald', sans-serif;
text-shadow: 0, 5px 0, 5px #343434
}
* {
margin: 0px;
/* colocacion del header en los id="header" */
padding: 0px;
/* colocacion del header en los id="header" */
}
#container {
width: 80%;
margin: 0 auto;
text-align: left;
}
#header {
background: #545;
margin: 3px 5px 3px 0x;
/* margen arriba , margen dercha, margen abajo, margen izquierda */
color: white;
font-family: 'Oswald', sans-serif, Helvetica, sans-serif;
text-shadow: 1px 1px #494949;
}
ul,
ol {
text-align: center;
list-style: none;
/* con el "list-style:none" hacemos que no se vean puntos ni otras formas en las listas, de modo que las palabras quedan solas en forma de lista. */
overflow: hidden;
}
.nav > li {
float: left;
/*posicion del menu horizontal*/
}
.nav li a {
background-color: 494949;
/*Color botones menú sin seleccion*/
color: #fff;
text-decoration: none;
/* quitamos el subrallado */
padding: 10px 100px;
/* altura y anchura del menu */
display: block;
margin: 0px 0px 1px 1px;
/* margen arriba , margen dercha, margen abajo, margen izquierda */
}
.nav li a:hover {
/* "hover" es cuando tienes el mouse encima*/
background-color: #6B6B6B;
}
.nav li ul {
display: none;
position: absolute;
/* posicion en cuando se despliega el menu, absolute=se abre y no mueve nada, relative=se desplaza todo objeto que este debajo */
white-space: nowrap;
text-align: left;
}
.nav li:hover > ul {
display: block;
}
.nav li ul li ul {
right: -140px;
top: 0px;
}
<html>
<head>
<title>Practica A3</title>
<link rel="stylesheet" type="text/css" href="estilo1.css" />
</head>
<div id="container">
<h1 class="center">Hello this is the website</h1>
<body>
<div id="header">
<nav class="menu-fixed">
<!-- Iniciamos la etiqueta del menu -->
<ul class="nav">
<!-- Inicio TODO -->
<li><a href="">Inicio</a>
</li>
<!-- Principal -->
<li><a href="">Servicios</a>
<!-- Principal -->
<ul>
<!-- Inicio secundaria -->
<li><a href="">Compra de entradas</a>
</li>
<!-- Secundaria -->
<li><a href="">Consulta de conciertos</a>
</li>
<!-- Secundaria -->
<li><a href="">Salas privadas</a>
</li>
<!-- Secundaria -->
<li><a href="">Reserva de mesas</a>
</li>
<!-- Secundaria -->
</ul>
<!-- Final secundaria -->
</li>
<li><a href="">Acerca de</a>
<!-- Principal -->
<ul>
<!-- Inicio secundaria -->
<li><a href="">Submenu1</a>
</li>
<!-- Secundaria -->
<li><a href="">Submenu2</a>
</li>
<!-- Secundaria -->
<li><a href="">Submenu3</a>
</li>
<!-- Secundaria -->
<li><a href="">Submenu4</a>
</li>
<!-- Secundaria -->
</ul>
<!-- Final secundaria -->
</li>
<li><a href="">Contacto</a>
</li>
<!-- Principal -->
</ul>
<!-- Final TODO -->
</nav>
<!-- Cerramos el menu con la nav -->
</div>
</br>
</br>
</br>
</br>
</br>
<p>Este es contenido de la pagina web. Simplemente se trata de un texto laaaaaaargo para ver como se posiciona y que tal quedaria con el resultado final.</br>
Esto es todo, gracias por la atencion.</p>
</body>
</div>
</html>
最佳答案
Also Live on fiddle你的导航栏是容器的全宽(80%)。现在的问题是您将 h1 和 .center 类宽度设置为 100% 和 border-bottom。如果删除 h1 和 .center 类的宽度,它将进入容器宽度。菜单文本中心问题设置 .nav li a {padding: 10px 100px 10px 10px;} 像这样。同样在你的 css 中,我在 css 部分注释掉了一些无用的属性,并尝试用注释给出一个简短的描述。
如果您对此有任何疑问。可以在评论区问我。谢谢
body {
background-color: #2A2A2A;
}
h1 {
color: #FCFCFC;
padding-left: 8px;
background-color: #494949;
/*In here you don't set # so the color not showing */
height: 50px;
margin: 0px 0px 7px 0px;
/* margen arriba , margen dercha, margen abajo, margen izquierda */
border-bottom: 2.5px solid #C69AD3;
/*sombra color del solido*/
font-family: 'Oswald', sans-serif;
text-shadow: 3px 3px #353535;
/* font-size: 200%; [By default h1 font-size 2em means 200% so I don't think you need to use it again ] */
}
.center {
margin: auto;
padding: 10px;
text-align: left;
/*text-align: bottom; [This css is invalid. Three types is valid text-align: left/center/right]*/
}
p {
color: white;
font-family: 'Oswald', sans-serif;
text-shadow: 0, 5px 0, 5px #343434
}
* {
margin: 0px;
/* colocacion del header en los id="header" */
padding: 0px;
/* colocacion del header en los id="header" */
}
#container {
width: 80%;
margin: 0 auto;
/*text-align: left; [it means inside all text element will be align left. Don't use it here. User where you need. ] */
}
#header {
background: #545;
/* margin: 3px 5px 3px 0x; [This margin will be invalid coz you missed the "P" from last 0px] */
/* margen arriba , margen dercha, margen abajo, margen izquierda */
color: white;
font-family: 'Oswald', sans-serif, Helvetica, sans-serif;
text-shadow: 1px 1px #494949;
}
/*Change ul,ol class like this other wise if you have any other list item in your body section will be effected. This is also a example of valid css selctor. */
ul.nav,
.nav li ul {
list-style: none;
/* con el "list-style:none" hacemos que no se vean puntos ni otras formas en las listas, de modo que las palabras quedan solas en forma de lista. */
overflow: hidden;
}
.nav > li {
float: left;
/*posicion del menu horizontal*/
}
.nav li a {
background-color: #494949;
/*Again in here you don't set # so the color not showing */
/*Color botones menú sin seleccion*/
color: #fff;
text-decoration: none;
/* quitamos el subrallado */
padding: 10px 100px 10px 10px;
/*This is for the left to right menu*/
/* altura y anchura del menu */
display: block;
/*margin: 0px 0px 1px 1px; [This is margin create the gap between every li a tag if you want that gap you can use this.*/
/* margen arriba , margen dercha, margen abajo, margen izquierda */
}
.nav li a:hover {
/* "hover" es cuando tienes el mouse encima*/
background-color: #6B6B6B;
}
.nav li ul {
display: none;
position: absolute;
/* posicion en cuando se despliega el menu, absolute=se abre y no mueve nada, relative=se desplaza todo objeto que este debajo */
white-space: nowrap;
text-align: left;
}
.nav li:hover > ul {
display: block;
}
.nav li ul li ul {
right: -140px;
top: 0px;
}
<!DOCTYPE html>
<html>
<head>
<title>Practica A3</title>
<link rel="stylesheet" type="text/css" href="estilo1.css" />
</head>
<body>
<div id="container">
<h1 class="center">Hello this is the website</h1>
<div id="header">
<nav class="menu-fixed">
<!-- Iniciamos la etiqueta del menu -->
<ul class="nav">
<!-- Inicio TODO -->
<li><a href="">Inicio</a>
</li>
<!-- Principal -->
<li><a href="">Servicios</a>
<!-- Principal -->
<ul>
<!-- Inicio secundaria -->
<li><a href="">Compra de entradas</a>
</li>
<!-- Secundaria -->
<li><a href="">Consulta de conciertos</a>
</li>
<!-- Secundaria -->
<li><a href="">Salas privadas</a>
</li>
<!-- Secundaria -->
<li><a href="">Reserva de mesas</a>
</li>
<!-- Secundaria -->
</ul>
<!-- Final secundaria -->
</li>
<li><a href="">Acerca de</a>
<!-- Principal -->
<ul>
<!-- Inicio secundaria -->
<li><a href="">Submenu1</a>
</li>
<!-- Secundaria -->
<li><a href="">Submenu2</a>
</li>
<!-- Secundaria -->
<li><a href="">Submenu3</a>
</li>
<!-- Secundaria -->
<li><a href="">Submenu4</a>
</li>
<!-- Secundaria -->
</ul>
<!-- Final secundaria -->
</li>
<li><a href="">Contacto</a>
</li>
<!-- Principal -->
</ul>
<!-- Final TODO -->
</nav>
<!-- Cerramos el menu con la nav -->
</div>
<br>
<br>
<br>
<br>
<br>
<p>Este es contenido de la pagina web. Simplemente se trata de un texto laaaaaaargo para ver como se posiciona y que tal quedaria con el resultado final.<br>Esto es todo, gracias por la atencion.</p>
</div><!--End #Container DIV -->
</body>
</html>
关于html - 水平菜单适合 100%,文本堆叠在左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40091596/
我正在使用这段代码: border-right:0px solid #ddd; height:85px; box-shadow :5px 5px 10px 1px #eaeaea; 但我刚刚得到
我遇到的问题是将文本放在图像的左侧... HTML 和 CSS h2, social-hand { font-family: 'PT Sans', sans-serif; display: i
美好的一天 我今天的 CSS 很糟糕。我有 3 列 div(水平,这就是我使用 float 的原因),但我想将我的文本居中对齐,但在包含列 div 的左侧。 HTML:
在我的应用程序中,我在截取屏幕截图时在我的 Imageview 中获得了透明像素。如何剪切顶部、左侧、右侧 和 Imageview 的底部。我尝试了下面的代码但没有工作 Bitmap bitmap =
如何在左侧的以下 LinearLayout 内部添加边框,使其宽度为 5dp 并适合 LinearLayout 的整个高度? LinearLayout 的高度是动态的,这意味着有时它可以是 50dp
我是第一次做网站。我在使用下拉菜单时遇到问题。它正在向左侧移动。请帮助我处理代码,使其位于导航菜单的正下方,并且将鼠标悬停在其上时应该可见。提前致谢。 这是我的 CSS 代码: ul { li
我对 html 和 css 有点生疏,我无法让 2 个图像 float ,一个在另一个之上。这是代码...   &nbs
我有一个固定宽度 (px) 的左侧边栏,右侧是我的主要内容。 这是我的演示:http://jsfiddle.net/fxWg7/4031/ 代码如下: 这是我的 html 代码: left co
所以我正在尝试做一个弹出式菜单,但我遇到了一点问题。 我已经申请了: .menu-side, .menu { -webkit-transition: left 0.2s ease; -
在下面的 CSS @media screen and (max-width: 750px) { .flexbox { display: block; } .menu ul {
@import 'https://fonts.googleapis.com/css?family=PT+Sans'; * { font-family: 'PT Sans', sans-serif
我想在我的标题旁边放一个图标。但它不合适..我怎样才能让它合适? My heading 最佳答案 使用vertical-align:middle,因此如果您更改文本或图像的大小,位
我正在使用参数方程围绕一个圆定位图像 ( How do I calculate a point on a circle’s circumference? ) 我使用简单的数学方法以更少的方式完成此操作
我想使用外部列表属性将 ul 列表正确定位在左浮动 img 的右侧,但元素符号未在图像右侧对齐,因为没有任何图像,但更多在左边。 Lorem ipsum dolor sit amet, c
我有一个layer-list.xml 现在我想在运行时更改 (top,right) 等项目的
我通过按:M-x linum-mode 来启用它们。如何将其“翻译”到 my.emacs 文件中,以便每次打开 EMACS 时自动启用它? 最佳答案 如果您希望每个缓冲区都使用它,请将 (global
我的Code : HTML 1 2 3 CSS #score { height:50px; } .myDiv { width:40px; height:40px;
我可以轻松设置 canvas.width 和 canvas.height 属性。我找不到正确的 JavaScript 语法来使用顶部和左侧设置 Canvas 的偏移量。我尝试过直接在 Canvas 上
我正在尝试为我正在编写的单人纸牌游戏完成条件游戏。 我把所有的 Action 和棋子都移除了。每一 block 都作为椭圆 UI 元素保存在一个二维数组中,当一 block 被拿走时,它会被替换为边框
我正在使用导航 View 修改 Android 应用程序。对于前几个菜单项,我给出了一个图标,但之后,我只给出了菜单标题。但是在导航面板中,没有图标的菜单项有一个空白区域。 如何删除空白区域?我希望菜
我是一名优秀的程序员,十分优秀!