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.
我正在寻找一个基于文本的水印,它只显示在我们 GlassFish 运行站点的开发/测试版本中。
https://stackoverflow.com/a/2486786/1174838主要做我想要的。唯一的问题是文本水印遮住了一些按钮。如何在所有内容背后制作水印但仍然可见?
使用以下混合物:
z-index:/\*some high value\*/;
&
user-select:none;
并且还使用相对/绝对定位将水印放到正确的位置,例如:
position:absolute; bottom:0; right:0;
(注意 user-select:none; 此时需要供应商前缀)
试一试z-index,假设您使用绝对定位放置水印。
z-index