Floating image with no text wrap 2007-09-14 01:53:44

Mặc định khi chèn image vào text và canh trái<br />
<p style="border: 1px solid gray; width: 350px;">
<img src="http://phpbasic.com/phpbasic_html/Default/images/logo.gif" style="float: left;" border="0" height="113" width="151">A
safari park is a large nature reserve intended for safari tours and encounters with rare wildlife. They are common in
Africa, but many exist elsewhere, including popular parks in England. People who wish to see animals in their natural state will love a trip to the safari.
</p>

Một hiệu ứng khác khi insert image:<br />
<style type="text/css">
.somediv{
width: 350px;
clear: left;
border: 1px solid gray;
}

.somediv .floatbox{
float: left;
width: 155px;
}

* html .somediv p{
height: 1%;
}

.somediv p{
margin-top: 0;
margin-left: 156px;
}

</style>
<div class="somediv">
<div class="floatbox">
<img border="0" src="http://phpbasic.com/phpbasic_html/Default/images/logo.gif" width="151" height="113" />
</div>
<p>A safari park is a large nature reserve intended for safari tours
and encounters with rare wildlife. They are common in Africa, but many exist elsewhere, including popular parks in England. People who wish to see animals in their natural state will love a trip to the safari.</p>
</div>

Code:
<style type="text/css">
.somediv{
width: 350px;
clear: left;
border: 1px solid gray;
}

.somediv .floatbox{
float: left;
width: 155px;
}

* html .somediv p{
height: 1%;
}

.somediv p{
margin-top: 0;
margin-left: 156px;
}

</style>
<div class="somediv">
<div class="floatbox">
<img border="0" src="http://phpbasic.com/phpbasic_html/Default/images/logo.gif" width="151" height="113" />
</div>
<p>A safari park is a large nature reserve intended for safari tours
and encounters with rare wildlife. They are common in Africa, but many exist elsewhere, including popular parks in England. People who wish to see animals in their natural state will love a trip to the safari.</p>
</div>

Tra loi 2 comment(s) TG 2007-09-14 01:53:44

changtraingheo 2007-09-14 08:37:05

hiệu ứng này cũng hiếm ai xài lắm, nên chỉ tham khảo thui

Tra loi

Spirit 2007-09-14 02:46:26

Thật ra nó chỉ là margin cái text sang left: 156px thôi, nếu xài vậy thì khi hiển thị giữa IE & FF sẽ khác nhau đó anh.

Mà ai xài vậy làm gì ^^ xấu thấy mồ hihi

Tra loi

Y kien