gpt4 book ai didi

css - 如何隐藏打印在每个图像底部的操作链接

转载 作者:行者123 更新时间:2023-11-28 11:08:19 25 4
gpt4 key购买 nike

我的页面包含几张图片:

<a class="fancybox" href="img/16.jpg"><img src="img/16.jpg" class="center-block img-responsive"></a> 

当我打印我的页面 (chrome) 时,href 在每张图片的底部可见。

那么,请问如何隐藏打印在每张图片底部的操作链接?

例如,当我将“隐藏打印”类应用到操作 block 时,我的图像就消失了...

最佳答案

我无法在 chrome 上重现该问题,所以我猜这不是因为 anchor 标记。正如 jackson 已经说过的,你可能有,

a:after {
content: " (" attr(href) ")";
}

在你的任何 css 框架中,如果你使用过的话。

if you're using Twitter Bootstrap as a framework, this will work for you(from https://stackoverflow.com/a/14931127/3556874):

a[href]:after{
content:"";
}

If you are not sure , where is it written or if you can not change the external css, you will also require to consider the :before pseudo class

@media print{

a[href]:after{
content:"";
}
a[href]:before{
content:"";
}

}

关于css - 如何隐藏打印在每个图像底部的操作链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28561419/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com