Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
看看我的网站 -> mangtolo。当您单击大评论按钮的图像(正好在图像上)时,它不会带您到任何地方。但是当您单击周围的a标签背景时,链接会起作用。
a
如何使其可点击(img 标签),以便将我带到评论页面?它应该是可点击的,但我的 html 或 CSS 的结构不允许吗?
<div id="fblikebutton">相对定位并呈现在评论按钮的顶部。添加一个background-color,您会看到它阻止了评论按钮。
<div id="fblikebutton">
background-color
如果您将 #fblikebutton 的 CSS 从
/* line 344 in home.css (according to Firebug) */ padding-left: 100px;
到:
margin-left: 100px;
它将解决您的问题(即 Facebook 喜欢按钮位于该评论之上)