2

我在设置 div 边框时遇到问题,它使用border-radius.htc.

它适用于除IE.

我将此网站div称为圆角http://dimox.net/cross-browser-border-radius-rounded-corners/

我的 HTML 将是,

<div id="div1">
  <input type="text" id="txtBox" />
</div>

CSS将是,

#div1 {
    width: 200px;
    height: 30px;
    background-color: #D1C9CC;
    border-style: solid;
    border-width: thin;
    border-color: red; 
    -webkit-border-radius : 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    behavior: url(jquery/border-radius.htc);
    -webkit-border-radius: 10px;
}

#txtBox {
    width: 180px;
    height: 20px;
    background-color: transparent;
    position: relative;
    top: 5px;
    left: 10px;
    border-style: none;
}

textbox我需要在. border_ 我该如何修改?redIE

好的答案绝对值得赞赏。

4

1 回答 1

0

在 IE 中,您可能需要在键盘上选择 F12 并检查您所处的文档模式。低于 IE 9 的任何内容都不起作用。在此处输入图像描述

于 2013-05-06T15:09:08.657 回答