-3
A
回答
1
不知道這是你在找什麼?
.row {
display: block;
border-top: 1px solid #efefef;
}
.row > img.img {
width: 100px;
display: inline;
float: left;
margin: 10px 10px 5px 0;
}
.row > a.title {
margin-top: 10px;
font-family: tahoma;
font-size: 18px;
color: #338899;
text-decoration: none;
display: inline-block;
}
.row > span.description {
color: #555555;
display: inline-block;
}
<div class="row">
<img src="http://assets.rollingstone.com/assets/images/story/taylor-swift-cancels-thailand-concert-due-to-political-turbulence-20140527/20140527-taylorswift-x624-1401220626.jpg" class="img" />
<a href="#something" class="title">Taylor swift</a>
<br/>
<span class="description">This is a singer</span>
</div>
+0
對目標。謝了哥們 – sTg
1
使用CSS的float
<div style="float:left;width:40px;"><img /></div>
<div style="float:right;width: calc(100% - 40px);">
<h2>Juno Temple</h2>
<p>Actress, ....</p>
</div>
,或者您可以使用flexboxes
1
<!DOCTYPE html>
<html>
<style>
.class1 > div{
display:inline-block
}
.class1 > div:nth-child(2){
display:inline-block;
position: absolute;
}
p{margin:0px}
</style>
<body>
<div class="class1">
<div>
<img src="http://www.w3schools.com/html/pic_mountain.jpg" alt="Mountain View" style="width:125px;">
</div>
<div>
<p>Juno Template</p>
<p>Actres, Lorem ipsum</p>
</div>
</div>
</body>
</html>
試試這個它的工作。
相關問題
- 1. html映像標記不顯示XAMPP文件中的圖像
- 2. 圖像標記和HTML中的文本
- 3. 在標記文件中使用p:graphicImage顯示BLOB圖像
- 4. ACTION_SEND文本/ html不使用html圖像標記發送圖像
- 5. 我使用html標記,但圖像不顯示
- 6. 在CGridView中顯示圖像標記
- 7. AjaxControlToolKit圖像在電子郵件中顯示爲html標記
- 8. 它可能在C#中顯示圖像從HTML標記形式?
- 9. HTML`img`標記不能在對象jquery中顯示爲圖像
- 10. 在HTML中使用rowspan
- 11. 使用Jsf圖形圖像標記顯示圖像onclick
- 12. 在Javascript和HTML中顯示圖像
- 13. android:顯示html字符串和圖像
- 14. 在.php文件中使用html img標籤顯示徽標等圖像
- 15. HTML Canvas Scratcher,當圖像的劃傷百分比時顯示div
- 16. 如何在JSP中使用標記顯示圖像
- 17. 使用img標記顯示在servlet中的圖像未找到
- 18. 如何在HTML頁面中使用HTTP標頭顯示圖像?
- 19. 鼠標懸停的圖像模糊圖像和顯示文字
- 20. 使用viewinfowindow在Google地圖標記上顯示圖像
- 21. 使圖像不顯示在html中
- 22. 使用javascript在鼠標上的圖像頂部顯示文字
- 23. 在選定標記上顯示圖像
- 24. 圖像不顯示在img標記
- 25. 顯示HTML標記爲HTML
- 26. Ipad顯示標題 - 圖像標記
- 27. 圖像標記上顯示圖像字節()的問題
- 28. 在運行時使用c傳遞值時html標記不顯示圖像#
- 29. 當谷歌地圖標記被點擊時,顯示圖像和文字android
- 30. 如何使用node.js在HTML文檔中顯示圖像
預計您至少會嘗試爲自己編寫代碼。堆棧溢出不是代碼寫入服務。我建議你做一些額外的研究,無論是通過谷歌或通過搜索,做一個嘗試和。如果您仍然遇到麻煩,請返回**您的代碼**並解釋您嘗試過的以及爲什麼它不起作用。 –
我是一名計算器成員,對指南有很好的瞭解。我問了我用td標籤實現了它。我從來沒有見過使用rowspan使用div標籤完成的事情。試驗和錯誤應該張貼我知道,但我不認爲我們需要一個在這裏,因爲我知道我只是想念一些屬性。 :) – sTg
我非常不同意,你應該用自己的替代代碼做出自己的嘗試,然後向我們表明......而且似乎其他人也同意我的看法。 –