user1067018
user1067018

Reputation: 47

Google Chrome CSS

I have my code like this

HTML

<div class="m"><img src="blue.jpg"></div>

CSS

.m{ 
  border:0px solid blue; 
  float:left; min-width:65px; 
  padding:23px 4px 10px; 
  text-align:center; 
  color:#8A4C25; 
  font-family:TW Cen MT;
  font-size:15px; 
}

Float left is not working in Google Chrome. Is there any solution for this

Upvotes: 0

Views: 433

Answers (1)

Imran
Imran

Reputation: 1104

There is a parent <li> you have set its position:relative; Please remove it or set its min-height to some thing.

.path-course-view li.activity{
   margin-right: 20px;
   position: relative;
   min-height:500px;
}

Upvotes: 1

Related Questions