JcSaint
JcSaint

Reputation: 115

propert width css not correctly work IE 11

I have a code:

.cl_Label{
  float:left;
  width:25%;
  margin-right:0.5em;
  padding-top:0.2em;
  text-align:right;
  font-weight:bold;
}

it's work in chrome but, ie 11 a property width not work correctly. I try:

<!--[if lte IE 8]>

<link href="../css/only-ie.css" rel="stylesheet" type="text/css" />

 <![endif]-->

but the css file not load.

What should I do? Tnks

Upvotes: 0

Views: 706

Answers (1)

M B Parvez
M B Parvez

Reputation: 816

Conditional Comments are no longer available for IE 11. MS has dropped conditional comments as of IE10. You can check from here

Upvotes: 2

Related Questions