所以,我要做的是将页面(宽度为700像素)以60:40的比例划分。在40我想要一张照片,其余的60张文字。我用div来包装图像和文本。但是,问题是每当我将光标悬停在块上时,它就会充当index.html的链接。我的意思是我希望文本选择文本而不是手形光标作为默认值。
这是CSS,我正在使用:
#image {
width: 40%;
text-align: center;
margin-top: 50px;
float: left;
}
#contentwrap {
width: 60%;
float: left;
text-align: justify;
font-size: 18px;
height: 225px;
}
#contentwrap p {font-family: arial, helvetica;}
#contentwrap pre {
margin-top: 45px;
text-align: center;
}
html的结构如下:
<div id = "image"><img src = "asd.jpg"></div>
<div id = "contentwrap"><pre> *text* </pre>
<p> *text*</p> </div>
图片为175x175像素
答案 0 :(得分:0)
除非确实存在链接,否则你不应该在你的CSS中明确设置cursor: pointer
。尝试设置cursor: auto !important
。