IE8不显示文本区域调整右下角大小

发布于 2024-11-19 15:40:05 字数 309 浏览 0 评论 0原文

我使用的是 IE8,但右下角的文本区域调整大小未显示。相同的代码在 Firefox 中运行正常。我在使用 IE 时在一些在线示例中也注意到了同样的问题。

有人知道在 IE 中显示调整大小底角的技巧吗?

我的 CSS:

textarea { resize:both; }

我的 HTML:

<div>
<textarea rows="20" cols="150"> 

</textarea>
</div>

I'm using IE8 but the textarea resize bottom right corner is not displaying. This same code works ok in Firefox. I also noticed the same problem in some online examples when using IE.

Anyone knows the trick to display the resize bottom corner in IE?

My CSS:

textarea { resize:both; }

My HTML:

<div>
<textarea rows="20" cols="150"> 

</textarea>
</div>

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

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

发布评论

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

评论(2

寂寞清仓 2024-11-26 15:40:05

到目前为止, resize CSS 属性仅受Gecko 和 WebKit 引擎(即 Firefox、Chrome 和 Safari)。

Internet Explorer 和 Opera 尚不支持它。

So far, the resize CSS property is only supported by the Gecko and WebKit engines (i.e. Firefox, Chrome and Safari).

Internet Explorer and Opera do not support it (yet).

﹏半生如梦愿梦如真 2024-11-26 15:40:05

Internet Explorer 不支持 resize CSS 属性。您可能需要使用 Javascript 框架(例如 jQuery)来获得对此功能的真正跨浏览器支持;或者您可以在 IE 中不支持它(您的用户能够调整文本区域的大小真的那么重要吗?)。

The resize CSS attribute isn't supported in Internet Explorer. You may need to use a Javascript framework (such as jQuery) to get truly cross-browser support for this functionality; or you can simply not support it in IE (is it really that important that your users be able to resize the textarea?).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文