This Issue is common that ," float : right " will not work in IE7 ,to overcome that we can use as follows
Example :
.css :
.float-right {
float : right;
}
.ie7 .float-right {
position : absolute;
right : 15px;
}
Example :
.css :
.float-right {
float : right;
}
.ie7 .float-right {
position : absolute;
right : 15px;
}
No comments:
Post a Comment