我在<head>
标签之间插入以下内容:
<link rel="stylesheet" type="css/stylesheet" href="fileadmin/css/konsensusempfehlung.css">
此样式表确实会影响我在Firefox中的HTML代码。 但是在IE11中却没有。
konsensusempfehlung.css:
tr.hauptzeile {
background-color: #FFFFFF;
text-align: left;
}
tr.tr-even{
background-color: #edf7f9;
}
th {
padding: 0.5em;
}
td.td-0 {
font-weight: bold;
}
td {
padding: 0.5em;
}
.table-scrollable {
width: 100%;
overflow-y: auto;
margin: 0 0 1em;
}
.table-scrollable::-webkit-scrollbar {
-webkit-appearance: none;
width: 14px;
height: 14px;
}
.table-scrollable::-webkit-scrollbar-thumb {
border-radius: 8px;
border: 3px solid #fff;
background-color: rgba(0, 0, 0, .3);
}
我该如何解决?
答案 0 :(得分:2)
使用正确的类型。
<link type="text/css" rel="stylesheet" href="yourLink">
答案 1 :(得分:1)
您需要将type属性的值从"css/stylesheet"
更改为"text/css"
。
答案 2 :(得分:0)
请尝试这种类型
<head>
<link rel="stylesheet" type="text/css" href="konsensusempfehlung.css" />
</head>
或者,如果您只想定位IE,请尝试此操作。
<head>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="konsensusempfehlung.css" />
<![endif]-->
</head>
让我知道进一步的澄清
答案 3 :(得分:0)
在链接类型中应使用text/css
。同时将href设置为your link
。虽然不应该是浏览器问题