作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的背景图片有width:118px
,点击背景图像时我想执行一些jquery,我无法使用<a>
标签。如何制作cursor:pointer
仅在 background
以及如何仅为背景指定类名?是否可以?怎么办?
<div id="post1_img"></div>
#post1_img
{
width:280px;
height:33px;
background:url(../images/assets/pullTab-readMore-off-.png) no-repeat top center;
clear:both;
}
编辑
点击“阅读更多”我想执行一些操作,是否可以在不创建任何额外 div 的情况下完成
width of div:280px;
width of image:118px;
最佳答案
嘿,现在习惯了 css 中的 after
属性
<div id="post1_img"></div>
CSS
#post1_img
{
width:280px;
height:33px;
background:url(http://www.gravatar.com/avatar/9932debdde3decc7726b508f43d57438?s=32&d=identicon&r=PG) no-repeat top center;
clear:both;
border:1px solid black;
position:relative;
}
#post1_img:after{
content:'';
position:absolute;
top:0;
left:50%;
margin-left:-16px;
width:32px;
height:33px;
cursor:pointer;
}
关于jquery - 如何只为背景指定类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11755948/
我是一名优秀的程序员,十分优秀!