- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
由于某些未知原因,我的框阴影没有显示。
我已经为此工作了一整天,但找不到解决方案。我删除了背景图像,但仍然看不到阴影。我也尝试了 -webkit、-moz 和 z-index,但无论我做什么,我仍然看不到阴影。
HTML:
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Unknown</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/basic.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<link rel="stylesheet" type="text/css" href="css/font.css">
<script type="text/javascript" src="js/navbar.js"></script>
</head>
<body>
<font face ="Alex Brush" size="5">
<div id="container">
<div id="paper">
<font color="#fff">
<a href="index.html">
<div id="title"></div>
<p id="asd">Unknown</p>
</a>
</font>
<div id="navbar">
<font color="black">
<div class="topnav" id="myTopnav">
<div id="sub-nav">
<div id="mini-nav-head">
<a id="responds" href="#home" class="active">Home</a>
<a class="icon" onclick="change()"><i class="fa fa-bars"></i></a>
</div>
<a id="respondy" href="#contact">Bouquets</a>
<a id="respond" href="#about">Weddings</a>
<a id="respond" href="#about">About us</a>
<a id="responde" href="mail/contact.php">Contact us</a>
</div>
</div>
</font>
</div>
</div>
</div>
</body>
</html>
CSS (navbar.css):
body {
margin: 0;
font-family: Arial, Helvetica;
}
#sub-nav {
display: flex;
align-items: center;
justify-content: center;
}
.topnav {
border-radius: 4px;
overflow: hidden;
background-color: white;
width: auto;
margin-top: 18%;
}
.topnav a {
height: auto;
width: auto;
padding: 10px;
float: left;
display: block;
color: #000;
text-align: center;
text-decoration: none;
font-size: 100%;
}
#respond, #responds, #respondy, #responde {
padding: 14px 3.5%;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav .icon {
display: none;
}
.icon {
position: relative;
top: 3.5px;
right: 1.8%;
padding: 0;
}
@media screen and (max-width: 865px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
#respond {
border-bottom: 1px solid black;
/*background-color: yellow;*/
}
#responde {
box-shadow: 10px 10px grey;
position: relative;
z-index: 10;
}
#respondy {
border-bottom: 1px solid black;
border-top: 1px solid black;
/*background-color: yellow;*/
}
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
top: 3.5px;
right: 1.8%;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
#sub-nav {
display: block;
}
.topnav a:hover {
background-color: #fff;
color: black;
}
}
其他 CSS (basic.css):
body, html {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
body {
background: url(../img/island.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#container {
margin: 0 auto;
width: 50%; /* Dužina */
height: 100%; /* Visina */
border-radius: 0px; /* Zakrivljenost rubova */
background-color: white; /* Pozadinska boja */
position: relative; /* Relativna pozicija */
z-index: 1; /* z-pozicija */
}
#container #paper {
margin-top: 0px;
margin-left: auto; /* Lijeva i desna margina se automatski rasporede pa je element na sredini */
margin-right: auto; /* Margine ostavljaju prostora izvana */
width: auto; /* Dužina */
height: 25%; /* Visina */
border-radius: 0px; /* Zakrivljenost rubova */
border: none; /* Debljina, veličina i boja margine */
background: url(../img/bouquet.jpg); /* Pozadinska slika */
no-repeat center 0;
max-width: 100%;
position: relative; /* Relativna pozicija */
padding: 1%; /* Padding ostavlj prostor unutra , ali oduzima od visine i dužine */
padding-right: 1.05%;
z-index: 2;
}
#paper{
top: 0px;
}
#title {
top: 0%;
position: absolute;
left: 3.2%;
}
#asd{
position: absolute;
top: -4.5%;
left: 4.9%;
}
#title {
padding-top: 0%;
width: 65px;
height: 18%;
padding-left: 2%;
padding-right: 2%;
border-left: 3px solid #000;
border-right: 3px solid #000;
border-bottom: 3px solid #000;
word-wrap: all;
background-color: #fff;
display: inline-block;
position: absolute;
}
a:link, a:visited, a:hover, a:active {
color: black;
}
@media screen and (max-width: 1210px) {
#container{
width: 70%;
}
}
有什么可以帮助我解决问题的建议吗?
最佳答案
问题是我在 .topnav
中有 overflow: hidden;
阻止了阴影显示,在我用 overflow: visible; 替换它之后;
阴影是可见的。
关于html - 盒子阴影不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56659083/
这个问题在这里已经有了答案: CSS3 Flexbox: display: box vs. flexbox vs. flex (3 个答案) 关闭 1 年前。 今天我们中的许多人都知道 displa
$('.finalLink').html(" Click to Follow"); 我正在尝试创建一个以 super 框模式打开的链接。尝试了灯箱,结果相同。这些链接有效,但只是转到该网站。如果我静态
我使用了 RayHandler.useDiffuseLight(true) ,现在无论我设置什么环境光值,屏幕上未照亮的部分都是黑色的。这是正常的吗?我见过其他用 libgdx 制作的应用程序,它同时
我需要帮助解决一个简单的问题。我的任务即将结束,我们要制作不同的艺术人物。我制作了一个“正方形内的正方形”盒子,需要生成该盒子的 4 行和 4 列。 我认为最好的解决方案是多一些 for 循环,但不能
我怎样才能实现this effect使用 CSS 和/或 jQuery? 我会发布到目前为止我编写的代码,但它没有用...... 最佳答案 使用jQuery Masonry或Isotope为了达成这个
我写了下面的代码: for row in range(len(listOfLists)): print('+' + '-+'*len(listOfLists)) print('|',
我想知道如何在 CSS3 中制作成 Angular 盒子。喜欢这个网站: http://themeluxe.com/themes/glissando/ (白人) 我怎样才能使边框看起来更好、更平滑。
我正在尝试实现具有三个垂直部分的简单布局: 页面顶部的小标题。 主要内容,必要时展开,以便页脚保留在页面底部。 页面底部的页脚。 主要内容部分应进一步分为两部分:一个带有输入框和按钮的非常小的表单,以
我正在尝试构建如下图所示的网格 IMG 链接:http://postimg.org/image/qo3b4nof1/ 但我得到的 DIV E 几乎在 D-DIV 旁边 这是我的代码
如何修改fancybox盒子的定位?我希望它被定位,以便它漂浮在我的容器 div 中... 感谢您的宝贵时间和帮助! 最佳答案 jquery.fancybox-1.2.6 的第 255 行有这段代码
这个问题在这里已经有了答案: Inset border-radius with CSS3 (8 个答案) 关闭 9 年前。 border-radius 属性可以使盒子的 Angular 变圆。但是如
我创建了一个包装器元素,其中包含 2 个彼此相邻的行内 block 框(图片中为浅绿色和黄色)。然后我创建了另外两个 div,它们都嵌套在其中一个内联 block 中以使内容居中。它可以工作,但由于某
我在使用 WordPress 时遇到问题,在盒子中嵌套盒子。在 WordPress 之外,这工作正常。我确定只有一两个参数有误。 外框为dp23,内框为dp22由于某种原因,内框 (dp22) 之间存
我目前尝试在容器内排列盒子的结果是这样的输出。 但我想要实现的是, 用最大数量的框填充每一行,但每个框都有固定的填充和边距。我相信我已经做到了。 我需要每行中的单个框来覆盖剩余空间,间隙仅为 1 像素
我在下面有多个 flexbox 的代码。当页面展开时,我如何将它们垂直居中放置在页面中?我尝试在我的 flex-container 中使用 justify-content: center; 但当我使用
我有这样的布局: 我
我是编程新手,我注意到有人提到了 flex box。在阅读了很多相关内容之后,它似乎对我有用。唯一的问题是我在安装它时遇到了很多麻烦,即使在搜索了大约一个小时的帮助之后也是如此。我从 github 下
Vagrantfile有问题: # -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config
我正在尝试下载一个 Vagrant 的盒子,但他们的服务器此时非常缓慢。他们有公共(public)镜子吗?我想下载precision64.box 文件。 谢谢 最佳答案 尝试更可靠的: Vagrant
在一个父容器内,三个 div 彼此重叠。顶部 div 是固定高度。底部 div 的内容占用了未知数量的垂直空间,但需要显示其中的所有内容。顶部 div 应填充剩余的垂直空间。每一个 // 100%
我是一名优秀的程序员,十分优秀!