導航:首頁 > 文字圖片 > 圖片文字布局

圖片文字布局

發布時間:2022-01-07 10:02:40

㈠ CSS 圖片和文字如何實現並排

無論你右邊文字有多少,始終都會在圖片右邊,不會再跑到圖片下邊了。
代碼如下,好好研究:
<style type="text/css">
.item .pic { float:left;margin-right:10px;width:100px;height:100px; }
.item .content {float:left;width:500px;}
</style>
<div class="item">
<div class="pic"><img src="a.jpg"></div>
<div class="content">文字部分</div>
</div>由於這個功能都要使用到浮動float,就需要對左右兩邊的模塊都要定義款度,不然的話,默認的都是100%,是填充整個外部容器,是無論如何都不能左右顯示了。

㈡ 這種關於文章的文字和圖片頁面是怎麼布局,求解

<style type="text/css">
.all{ width:599px; height:auto; margin:0 auto; border:2px solid #666; float:left; padding:10px; font-size:12px; color:#666666; line-height:24px;}
.top{ width:599px; height:50px; line-height:50px; float:left; font-size:16px; font-family:"微軟雅黑"; font-weight:bold; text-align:center}
.main_1{ width:599px; height:30px; float:left}
.main_2{ width:250px; height:30px; line-height:30px; float:left; color:#666;}
.main_3{ width:100px; height:30px; line-height:30px; float:left; color:#ff0000;}
.main_4{ width:100px; height:30px; line-height:30px; float:right;}
.main_5{ width:599px; height:auto; float:left; background:url(123.jpg) no-repeat scroll left top;}
.main_6{ width:599px; height:300px; float:left;}
p{ color:#ff0000; margin:5px 0;}
.span{ font-weight:bold; color:#333}
a{ color:#666; text-decoration:none; padding:0 15px;}
a:hover{ color:#ff0000; text-decoration:none;}
</style>
<div class="all">
<div class="top">這里是標題</div>
<div class="main_1">
<div class="main_2">瀏覽量等等…………,寬度自己調整</div>
<div class="main_3">寬度自己調整</div>
<div class="main_4">分享</div>
</div>
<p><span>標簽:</span><a href="#" target="_self">鏈接</a> <a href="#" target="_self">鏈接</a></p>
<div class="main_5">css中的背景圖片自己上傳上去,然後定位就行了。。。css中的背景圖片自己上傳上去,然後定位就行了。。。css中的背景圖片自己上傳上去,然後定位就行了。。。css中的背景圖片自己上傳上去,然後定位就行了。。。css中的背景圖片自己上傳上去,然後定位就行了。。。css中的背景圖片自己上傳上去,然後定位就行了。。。</div>
<p>圖片上面的標題</p>
<div class="main_6"><img src="" border="0"></div>
</div>

㈢ 圖片文字css布局問題

花了半個小時幫你寫了這些代碼,真不容易,幾乎和你效果圖一模一樣,兼容任何瀏覽器,代碼和圖片已經過測試,測試成功100%,具體代碼如下:

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
<title>SNS</title>
<styletype="text/css">
<!--
body{
font-family:Arial;
padding:0;
margin:10px;
color:#999;
font-size:12px;
background-color:#323232;
}
a{
cursor:pointer;
text-decoration:none;
}
.fr{
float:right;
}
.cl{
clear:both;
}
.c4{
color:#444;
}
.c6{
color:#666;
}
.blue{
color:#2a7ad2;
}
.bluea{
color:#2a7ad2;
}
.bluea:hover{
color:#2a7ad2;
text-decoration:underline;
}
.yellow{
color:#ffc806;
}
.yellowa{
color:#ffc806;
}
.yellowa:hover{
color:#ffc806;
text-decoration:underline;
}
.mt30{
margin-top:30px;
}
.mr10{
margin-right:10px;
}
-->
</style>
</head>

<body>

<!--頭像-->
<divclass="fr">
<imgsrc="header.png"width="40px"height="40px"/>
</div>
<!--頭像/-->

<!--登錄信息-->
<divclass="frmr10">
<divclass="fr">
<span>Loggedinas<b>Admin</b></span>
<spanclass="c4">|</span>
<spanclass="blue"><ahref="#">Settings</a></span>
<spanclass="c4">|</span>
<spanclass="blue"><ahref="#">Logout</a></span>
</div>
<divclass="frcl">
<spanclass="c6">Youhave</span>
<spanclass="yellow"><ahref="#"><b>1</b>newmessage!</a></span>
</div>
</div>
<!--登錄信息/-->

<!--語言切換-->
<divclass="frclmt30">
<b>English</b>·<spanclass="blue"><ahref="#">Spanish</a></span>·<spanclass="blue"><ahref="#">German</a></span>
</div>
<!--語言切換-->
</div>
</body>
</html>


註:header.png為40x40的頭像。

㈣ word怎麼編排文字和圖片的布局

點擊插入的圖片,會出現「圖片」工具欄,點擊其上的「文字環繞」,剩下的你自己就會做了,呵呵。祝你操作順利。

㈤ CSS布局文字在圖片上怎麼寫

<style>
.img{position:relative;}
.imgp{width:100%;height:100px;text-align:center;position:absolute;top:40%;font-size:14px;line-height:30px;}
</style>

<divclass="img">
<imgsrc="1.jpg"alt="">
<p>
hello<br/>hello<br/>hello
<p>

</div>

文字間記得加<br /> 怎麼沒顯示

㈥ 在一個div 裡面有左邊圖片左偏邊下方是文字,右邊是文字怎麼布局,像圖片這樣的布局怎麼布局,求解

就拿知識那一塊為例,圖標與知識放在一個div內,右邊的文字連再放在一個div內,之前2個div是平級的,都設定好寬度左浮動,然後再再裡面做細分就行了
其實div+css有點像我們小時候玩的俄羅斯方塊積木,這需要我們發揮想像來排列div的組合方式

㈦ html怎麼讓文字和圖片並排

同一個div中的圖片和文字一起左右居中的話div中的圖片設置display:block;margin:auto;然後給div設置text-align:center就好,記得給div設置寬度。想要垂直也居中就不給div設置高度,設置相等padding-top和padding-bottom就行

㈧ css中圖片與文字布局

您好,給圖片一個浮動樣式效果,便可達到你的要求。或者圖片設置一個層浮動,文字也設計一個層浮動,便可。都向左浮動。

㈨ 怎麼用CSS+DIV在圖片上布局文字

div是將網頁區塊化處理,css是給對應的div應用對應的樣式,你所說的圖片上進行文字處理,有兩種辦法,:1將圖片變成該區塊的背景圖,<div style="background:url(images/index8_29.gif) repeat-y;">然後在這個區塊中你就可以自己定義文字了,比如<div style="fontsize:12px;colour:#000000;margin-left:auto;
margin-right:auto;">所要放的文字</div></div>

㈩ div+css 文字圖片布局

你好,只要設置左側圖片左浮動就可以了,右側p標簽設置overflow:hidden;

大概代碼:

img{float:left;margin-right:10px;}
p{overflow:hidden;}
閱讀全文

與圖片文字布局相關的資料

熱點內容
霸氣名字圖片女生帶符號 瀏覽:321
戶外婚紗照圖片大全 瀏覽:735
大疆如何將圖片傳入手機 瀏覽:566
美女吃蝦圖片大全 瀏覽:223
圖片放word右邊還是左邊 瀏覽:864
印度卡通圖片可愛 瀏覽:902
可愛的包圖片卡通 瀏覽:353
簡單水粉畫的圖片 瀏覽:952
安井食品大全圖片 瀏覽:220
監控畫面圖片怎麼添加文字 瀏覽:518
2016男士短發發型圖片 瀏覽:818
劉海三七分發型圖片 瀏覽:44
花腿女孩子的圖片 瀏覽:150
看圖字謎圖片簡單 瀏覽:977
圖片保存後如何恢復 瀏覽:303
扎馬尾的動漫男生圖片 瀏覽:682
男生斜海發型圖片 瀏覽:117
短發女孩發型辮子圖片 瀏覽:600
教師座右銘的圖片文字 瀏覽:584
女士短短發型圖片 瀏覽:414