❶ div+css:實現文字環繞圖片的形式(註:要求圖片的位置可任意設置,文字一直是圍繞著圖片)
圖片要放任意位置存css不行的哦,一旦圖片在中間,四周都有文本,你只有把文字分開不放在一個段落內慢慢拼出來,而且每次圖片大小或位置有變動你都得算尺寸重新寫端代碼再拼一次。
❷ css 文字環繞圖片
給你的圖片寫上高度和寬度。
這個為什麼我答不出來。不過你可以換個方法來實現。
把圖片放在P的外面。或者把圖片和文字看成二個DIV塊。這樣就可以輕鬆浮動了。不過有可能就是沒有環繞效果。
按理說其它的人說的是正確的,而你還不能實現,應該把全部代碼發上來看看,可能哪裡有誤吧。
❸ 網頁中圖片如何設置文字圍繞
網頁中文字環繞圖片效果的實現
1、直接設定文字環繞圖片
<div
style="width:
400px;
border:
1px
solid
#CCCCCC">
<img
id="img"
src="images/photo_01.gif"
style="float:
left;
clear:
left;
width:
120px;
height:
120px;
padding:
10px"
/>
某某公司是生產銷售新型電子材料、服裝、傢具的專業廠家,有自營進出口權,年銷售額過億元。<br/>新型電子材料產品已在全國各大電子企業、軍工企業以及航天、鍾表、珠寶首飾等行業享有較高的知名度。
服裝暢銷北美、歐洲、大洋洲<br/>我要實現左上
角是圖片,然後就是文字環繞在圖片的右邊,像下面的效果圖一樣。
</div>
2、用CSS實現文字環繞圖片的效果
以下是引用片段:
<!DOCTYPE
html
PUBLIC
"-//W3C//DTD
XHTML
1.0
Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<style>
div
{
width:300px;
border:1px
solid
red
}
img
{
float:left;
width:100px;
height:100px
}
</style>
<div>
<img
src="images/photo_01.gif"
/>
某某公司是生產銷售新型電子材料、服裝、傢具的專業廠家,有自營進出口權,年銷售額過億元。<br/>新型電子材料產品已在全國各大電子企業、軍工企業以及航天、鍾表、珠寶首飾等行業享有較高的知名度。
服裝暢銷北美、歐洲、大洋洲<br/>我要實現左上
角是圖片,然後就是文字環繞在圖片的右邊,像下面的效果圖一樣。
</div>
❹ CSS 文字環繞圖片問題
親,你嘗試下這個代碼: .cat-area{ width:343px; float:left} .cat-area .content .img{ margin-right:10px; float:left; display:inline;} .cat-area .content .title { float:left; color:#333; font-size:14px; height:100px; line-height:120px; overflow:hidden} .cat-area .content .des{ float:left; color:#777; font-size:12px; line-height:18px}標題,,,,, 摘要,,,,,
❺ 高分求css文字環繞圖片代碼
<style>
.content img {float:left}
</style>
<div class="content">
<img src="1.jpg" /><span>dsddsds<br>fdsfggfgfg<br>sfdsfdfdds</span>
</div>
❻ css怎麼實現文字在圖片四周環繞
<html>
<head>
<style type="text/css">
img
{
float:right
}
</style>
</head>
<body>
<p>在下面的段落中,我們添加了一個樣式為 <b>float:right</b> 的圖像。結果是這個圖像會浮動到段落的右側。</p>
<p>
<img src="/i/eg_cute.gif" />
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
</body>
</html>