=======
文字環繞
=======
<style>
div {
width:300px;
border:1px solid red
}
img {
float:center;
width:100px;
height:100px
}
</style>
<div>
<img src="/images/logo.gif" />
繞啊繞啊
繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊 繞啊繞啊
</div>
=======
圖片居中
======
<center><img src="img/logo.gif"></center> <!--html-->
==============================================
<!---css-->
========
div{
margin:0 auto;
padding:0px;
}
<div id="logo">
<img src="img/logo.gif">
</div>
CSS的定義:
#logo{width:500px; height:300px;}
#logo img{margin-top:100px; margin-left:150px;}
=================================
可以把讓圖片先居中,後環繞。
⑵ CSS代碼如何設置圖片周圍字體環繞
1、准備一張圖片,新建一個空白html文件
⑶ css文字環繞圖片問題
讓div.pic右浮動就可以了
div.pic{ float:right;}
不過有些東西還是一確定一下的好,比如你浮動的那張圖片,如果尺寸比整個div.post還要大多醜啊。還有,你的div.text里如果有圖片,圖片是不會從中間折斷的,那可能會留下大片空白,可能也會不好看。如果是文字環繞就很好,呵呵
⑷ 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>
⑸ CSS求助,文字環繞圖片(兩張圖)
<p><imgclass="pic1"src="http://www..com/img/bdlogo.gif"alt=""/>測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據</p>
<p>測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測</p>
<p>試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據</p>
<p>試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測</p><p><imgclass="pic2"src="http://www..com/img/bdlogo.gif"alt=""/>試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測試數據測</p>
CSS:
.pic1{
float:left;
}
.pic2{
float:right;
}
⑹ css 文字環繞圖片
給你的圖片寫上高度和寬度。
這個為什麼我答不出來。不過你可以換個方法來實現。
把圖片放在P的外面。或者把圖片和文字看成二個DIV塊。這樣就可以輕鬆浮動了。不過有可能就是沒有環繞效果。
按理說其它的人說的是正確的,而你還不能實現,應該把全部代碼發上來看看,可能哪裡有誤吧。
⑺ div文字這樣環繞圖片!css怎麼定義!
方法很分多,可以把圖片和文字分別放在div中然後浮動即可。
我寫一個給你,稍等!
<!doctypehtml>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>Document</title>
<style>
img{
float:left;
}
</style>
</head>
<body>
<div>
<imgsrc="test1.jpg"alt="">
<ul>
<li>地址:***********</li>
<li>電話:1111111111</li>
<li>聯系人:大大大大大大</li>
</ul>
</div>
</body>
</html>
你自己再改一改,有用就採納!
⑻ 高分求css文字環繞圖片代碼
<style>
.content img {float:left}
</style>
<div class="content">
<img src="1.jpg" /><span>dsddsds<br>fdsfggfgfg<br>sfdsfdfdds</span>
</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}
標題,,,,,
摘要,,,,,