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.
我希望有一个页面显示在我的索引页面中但不可点击(如图像块)。我可以通过 css 或页眉代码注入来实现这一点吗?有人知道吗?请帮忙!
首先,您需要找到要编辑的 div 的 id。
以squarespace flatiron demo为例,div为“yui_3_17_2_1_1405046742289_1089”
a#yui_3_17_2_1_1405046742289_1089 { /*disable the link */ pointer-events:none; }
如果您还想在图像上隐藏文本:
#yui_3_17_2_1_1405046742289_1089 .wrapper {display: none;}
}