ie浏览器添加tls3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ie浏览器添加tls3相关的知识,希望对你有一定的参考价值。
参考技术A 你好,ie浏览器添加tls安全设置操作如下,首先打开 Internet 选项,点高级,在勾选“使用 TLS ”,点确定后重启 IE,重新打开网页。为 IE 添加样式相对位置,为其他浏览器添加绝对位置
【中文标题】为 IE 添加样式相对位置,为其他浏览器添加绝对位置【英文标题】:add style position relative for IE and position absolute for other browsers 【发布时间】:2020-08-18 14:33:18 【问题描述】:我想添加样式 position:relative 为 ie 和 position:absolute 为其他浏览器
这是我的代码
<div id="textDiv" style="display:none; background-color: #434343; padding: 5px 10px 5px 10px; margin-left: 10px; margin-top: 30px; position: absolute;"></div>
如何解决
【问题讨论】:
【参考方案1】:如果您尝试为 IE 浏览器应用特定样式,那么您应该尝试使用以下媒体查询来定位 IE 浏览器。
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)
示例:
<!doctype html>
<html>
<head>
<style>
#textDiv
position:absolute;
color:green;
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active)
#textDiv
position:relative;
color:red;
</style>
</head>
<body>
<div id="textDiv">This is text...</div>
</body>
</html>
您会注意到媒体查询中的 CSS 代码仅适用于 IE 10 或 IE 11 浏览器。
参考:
How to target only IE (any version) within a stylesheet?
【讨论】:
请接受答案。它可以在未来帮助其他社区成员。感谢你的理解。参考:***.com/help/someone-answers【参考方案2】:忽略维护问题,针对除IE之外的所有浏览器的技巧是使用@support()
规则is not supported at all on IE。
【讨论】:
以上是关于ie浏览器添加tls3的主要内容,如果未能解决你的问题,请参考以下文章