情侣打印样式表问题

发布于 2024-11-25 02:31:24 字数 457 浏览 2 评论 0原文

我想做的事我认为不可能,但我还是问=>

首先 - 打印时我不会显示图像,因为我的页面可能会变得很重,或者至少有几个合适尺寸的图像会耗尽墨水。那么是否可以不显示图像而显示图像的 ALT 文本,以便用户知道图像是什么。

其次 - 当用户打印表单时,由于表单的样式有点难看。有没有办法更改输入以仅显示输入的文本而不显示其他内容。

还有一个类似的问题~打印样式表 - 将输入转换为文本~我知道这可以使用 jQuery 来完成,但是有没有 CSS Only 方法来实现这一点?

谢谢!

编辑 - 我想出了我的第二个问题。我将表单边框和背景设置为白色以匹配页面。换句话说,它只隐藏和显示文本。 =>

What I want to do I do not think is possible but I ask anyway =>

First - I am not displaying images when printed as my pages can get image heavy or at least a couple decent size images that would eat ink up. So is it possible to not display images yet display the ALT text of the image so the user will know what the image was.

Second - When a user prints a form it is kinda ugly as the forms are styled. Is there a way to change the input to display just the text of the inputs and nothing else.

There is a similar question to this ~ Print Stylesheet - Converting inputs to text ~ I understand that this could be done using jQuery but is there a CSS Only method to achieving this?

Thanks!

EDIT - I figured out my second question. I made the forms border and background white to match the page. In other words it hides and shows only the text. =>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅忆 2024-12-02 02:31:24

是的,有。它被称为@media,并且已经在主要浏览器中得到支持一段时间了。

所以,假设您有类似的内容:

<img class="no-print" src="image" /><span class="print">Image Label</span>

您的样式表可能类似于:

<stye>
   .print {display: none;} // only to be displayed when this is being printed so the default is to not display
   @media print {
      .print {display: inline}
      .no-print {display: none}
   }
</style>

Yes, there is. It's called @media and has been supported in major browsers for a while.

So, let's say that you had something like:

<img class="no-print" src="image" /><span class="print">Image Label</span>

Your style sheet could be something like:

<stye>
   .print {display: none;} // only to be displayed when this is being printed so the default is to not display
   @media print {
      .print {display: inline}
      .no-print {display: none}
   }
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文