gpt4 book ai didi

javascript - :-ms-input-placeholder is not working in IE9 in Windows 7 OS

转载 作者:太空狗 更新时间:2023-10-29 16:45:23 26 4
gpt4 key购买 nike

我真的很困惑 IE9 浏览器中的一个 CSS 问题。我有一个带有 textarea 元素和 placeholder 的网页。我只想 text-align: center; 占位符,

enter image description here

输入文本文本对齐设置为左。

enter image description here

请在下方查看我的修改。

HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
textarea {
width: 80%;
height: 80px;
}

::-webkit-input-placeholder {
text-align: center;
}

:-moz-placeholder {
text-align: center;
}

::-moz-placeholder {
text-align: center;
}

:-ms-input-placeholder {
text-align: center;
}
</style>
</head>
<body>
<textarea rows="2" cols="21" id='txtnote' class="testplaceholder" maxlength="500" placeholder="Note" onblur=""></textarea>
</body>
</html>

IE 11、Firefox、Windows 8 中的 Chrome 中一切正常,但是当我在 Windows 7 中的 IE9 中查看此网页时它不工作

最佳答案

根据 MSDN ,为了让这个选择器工作,你需要至少有 IE 10。此外,经过进一步调查——因为它在 IE9 中不受支持,还有其他解决方法可以让它按需要工作。

请查看此 SO answer或者这个 alternative JS here .

关于javascript - :-ms-input-placeholder is not working in IE9 in Windows 7 OS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34268718/

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