小编典典

ie9边框半径

html

我有以下在Fi​​refox,Chrome和Safari中可用的工具。但不是在IE9中。它在td的左上和右上应用圆角。我想念什么?

border-left: solid 1px #444f82;
border-right:solid 1px #444f82;
border-top:solid 1px #444f82;
border-top-right-radius: 7px;
border-top-left-radius: 7px;
-moz-border-radius-topright: 7px;
-webkit-border-top-right-radius: 7px;
-khtml-border-radius-topright: 7px;
-moz-border-radius-topleft: 7px;
-webkit-border-top-left-radius: 7px;
-khtml-border-radius-topleft: 7px;
behavior: url(/survey_templates/PIE.htc);

阅读 265

收藏
2020-05-10

共1个答案

小编典典

您是否已将其放在HTML文档的顶部(在<html>标记上方)

<!DOCTYPE html>

IE9要求此网站显示新的HTML5 / CSS3内容

编辑:或许多其他Doctype(XHTML等,但这是最短和最容易记住的)

2020-05-10