- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
有人能指出为什么悬停不起作用吗?我设法将背景图像添加到每个 anchor 元素。但是,代码看起来多余,但如果我尝试将 background-size:cover、background-position: right top 和 background-origin: content-box 移动到 .menu-item 类,它就会停止工作。同样在 CSS 的底部,有一个 #ID:hover 似乎不起作用,我不知道为什么,欢迎任何提示 :)
#thumb-services {
width: 100%;
height: 250px;
}
.menu-item {
width: 24%;
height: 100%;
position: relative;
float: left;
margin: 0 0.66666667%;
cursor: pointer;
}
#thumb-services > a:last-child {
margin-right: 0;
float: right;
}
#thumb-services > a:first-child {
margin-left: 0;
}
#tratamento-imagem {
background: url('http://lorempixel.com/100/200/sports/1/') no-repeat;
background-size:cover;
background-position: right top;
background-origin: content-box;
}
#portfolio {
background: url('http://lorempixel.com/100/200/sports/2/') no-repeat;
background-size:cover;
background-position: right top;
background-origin: content-box;
}
#fotografia {
background: url('http://lorempixel.com/100/200/sports/3/') no-repeat;
background-size:cover;
background-position: right top;
background-origin: content-box;
}
#montagem {
background: url('http://lorempixel.com/100/200/sports/4/') no-repeat;
background-size:cover;
background-position: right top;
background-origin: content-box;
}
#tratamento-imagem:hover {
background: red;
}
<nav id="thumb-services">
<a id="tratamento-imagem" class="menu-item"></a>
<a id="portfolio" class="menu-item"></a>
<a id="fotografia" class="menu-item"></a>
<a id="montagem" class="menu-item"></a>
</nav>
最佳答案
你也可以使用伪元素实现悬停效果:http://jsfiddle.net/mu20eLd1/ . (注意:我已经重组了您的一些代码)。
HTML:
<nav id="thumb-services">
<a></a>
<a></a>
<a></a>
<a></a>
</nav>
CSS:
#thumb-services {
height: 250px;
}
#thumb-services > a {
width: 24%;
height: 100%;
float: left;
cursor: pointer;
position: relative;
background: url('http://lorempixel.com/100/200/sports/1/') no-repeat top left/cover;
}
#thumb-services > a + a {
margin-left: 1.32%;
}
#thumb-services > a:nth-of-type(2) {
background-image: url('http://lorempixel.com/100/200/sports/2/');
}
#thumb-services > a:nth-of-type(3) {
background-image: url('http://lorempixel.com/100/200/sports/3/');
}
#thumb-services > a:nth-of-type(4) {
background-image: url('http://lorempixel.com/100/200/sports/4/');
}
#thumb-services > a:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: hsla(0, 10%, 20%, 0.7);
display: none;
}
#thumb-services > a:hover:before {
display: block;
}
关于html - CSS 基础 :hover,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31711818/
vue3 快速入门系列 - 基础 前面我们已经用 vue2 和 react 做过开发了。 从 vue2 升级到 vue3 成本较大,特别是较大的项目。所以许多公司对旧项目继续使用vue2,新项目则
C# 基础 C#项目创建 这里注意win10虚拟机需要更新下补丁,不然直接下载visual studio 2022会显示版本不支持 HelloWorld C#的类文件都是以.cs结尾,入口方法为sta
关于 iPhone 内存管理的非常基本的问题: 假设我有一个 viewController,其中有几个 subview 也由 viewController 控制。当我删除顶部 viewControll
我仍在努力适应指针。不是概念——我理解内存位置、匹配可变长度的指针增量等——这是语法。这是一个我认为是我感到困惑/无法直观把握的原因之一: int a = 42; 在一个int大小的内存空间中分配并放
1. 简介 Kafka(Apache Kafka) 是一种分布式流数据平台,最初由LinkedIn开发,并于后来捐赠给Apache软件基金会,成为了一个Apache顶级项目。它被设计用于处理大规
1.想要在命令提示符下操作mysql服务器,添加系统变量。(计算机-系统属性——环境变量——path) 2.查询数据表中的数据; select selection_lis
MySQL表的增删改查(基础) 1. CRUD 注释:在SQL中可以使用“–空格+描述”来表示注释说明 CRUD 即增加(Create)、查询(Retrieve)、更新(Update)、删除(Dele
我有一个网页,可以在加载时打开显示模式,在这个模式中,我有一个可以打开第二个模式的链接。当第二个模式关闭时(通过单击关闭按钮或单击模式外部),我想重新打开第一个模式。 对于关闭按钮,我可以通过向具有
使用 Core Data Fetched Properties,我如何执行这个简单的请求: 我希望获取的属性 ( myFetchProp ) 存储 StoreA ,它应该这样做: [myFetchPr
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 8年前关闭。 Improve this
最近,我得到了一个现有的Drupal项目,并被要求改进前端(HTML,JavaScript,CSS)。我在Django,PHP,Ruby等方面具有大量的前端和后端开发经验,但是我没有任何Drupal经
我试图让我的用户通过使用扫描仪类来决定要做什么,但我有一个问题,代码一旦运行就不会激活,并且它不会让我跳过任何行。我的代码如下所示: Scanner input = new Scanner(S
对模糊的标题表示歉意,因为我想不出这个名字是什么。 基本上创建一个计算学生财务付款的小程序。当我运行它时,它计算对象限额没有问题。然而,无论我尝试什么,对象“助学金”似乎除了 0 之外什么也没有提出。
这是我的代码 - main() { double x; double y = pow(((1/3 + sin(x/2))(pow(x, 3) + 3)), 1/3); prin
如果我的术语在这个问题上有误,我们深表歉意。 采取以下功能: i = 1; v = i * 2; for (j = 0; j < 4; j++ ) { console.log(v);
我的应用程序中有不同的类文件。我有 5 个类,其中 2 个是 Activity ,1 个是运行的服务。其他 2 个只是类。这两个类中变量的生命周期是多少。我知道一个 Activity 可以被操作系统杀
例如,一个方法返回一个 List 类型的对象。 public List bojangles () ... 一些代码调用方法FooBar.bojangles.iterator(); 我是 Java 的新
我遇到了一个奇怪的问题,网格的大小不适合我的屏幕。当我使用 12 列大时,它只占据屏幕的 1/3 的中间,请参见图像。我不确定是什么导致了这个问题。我没有任何会导致这种情况发生的奇怪 CSS。我不会在
我尝试使用头文件和源文件,但遇到了问题。因此,我对我正在尝试做的事情做了一个简化版本,我在 CodeBlocks 中遇到了同样的错误(undefined reference to add(double
我正在为我的网格系统使用基础,但这在任何网格系统中都可能是一个问题。我基本上用一个容器包裹了 3 个单元格,但其中一个单元格应该长到页面边框(留在我的 Sampe-Image 中)但这也可能在右侧)。
我是一名优秀的程序员,十分优秀!