0
A
回答
2
您可以用CSS使它: http://jsfiddle.net/Cqnaa/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hello</title>
<style>
body{
margin: 20px;
}
.box:after {
content: "";
position: absolute;
top: 0px;
right: 0px;
border-width: 20px 20px 0 0;
border-style: solid;
border-color: #fff transparent;
display: block;
width: 0;
}
.box {
color: #fff;
background-color: #bbd0ed;
position: relative;
height: 80px;
width: 150px;
padding: 10px;
}
</style>
</head>
<body>
<p class="box">
Hello!
</p>
</body>
</html>
GL HF
+0
非常感謝Greger。這對我來說很有魅力。 – vikky114
0
這可以用CSS來實現:
.box-corner {
/* You would prefer a png for the transparent background where the corner is */
background-image: url('box-background.jpg');
padding: 10px 10px 0 0; /* Assuming the corner is 10x10 */
}
然後實例是這樣的:
<div class="box-corner">Content</div>
0
採取一些高度和寬度與一些背景顏色的DIV。然後添加一個帶有背景的子div,因爲圖像中有裁剪。將子div的位置設置爲相對,並將頂部和右側設置爲0. Like below
#childDiv{
position : relative;
background-image : url("cropedMark.png)"
width : "Some width";
height : "Some height";
top : 0;
right : 0
}
希望這有所幫助。
+0
您好。非常感謝。這也適用。但是我正在尋找一個我不想擁有圖像的地方。請向下滾動以獲取工作解決方案。 – vikky114
0
這裏是一個確切的答案。 http://jsfiddle.net/swGvr/
<style>
#target {
border-top: 30px solid transparent;
border-left: 30px solid #4c4c4c;
border-right: 30px solid #4c4c4c;
border-bottom: 30px solid #4c4c4c;
width:200px;
height:100px;
}
#target > div {
background-color:#4c4c4c;
width:230px;
height:130px;
margin-top:-30px;
margin-left:-30px;
position:absolute;
}
</style>
<div id="target"><div></div></div>
有兩個CSS共享的寬度和高度。 您也可以使用jQuery自動生成另一個。
相關問題
- 1. HTML編碼自定義HTML幫手
- 2. 自定義HtmlHelper返回編碼的html
- 3. OLEDB自定義編碼
- 4. 自定義字體編碼
- 5. Python的HTML電子郵件:自定義輸出顏色編碼
- 6. C#文本框的自定義掩碼
- 7. MTOM編碼和自定義綁定
- 8. 製作自定義邊框html
- 9. 如何自定義html表格邊框?
- 10. 自定義frappe框架html佈局
- 11. 從圖像中自定義html邊框
- 12. 創建自定義HTML文本框
- 13. 用自定義UI創建html框
- 14. JDev代碼編輯器的自定義
- 15. C中的自定義字符編碼
- 16. 開發自定義Javascript html編輯器
- 17. 在自定義Python Markdown擴展輸出中禁用HTML編碼
- 18. 爲什麼我的自定義HTML助手結果獲得html編碼?
- 19. 使用自定義編碼或添加自定義字符
- 20. 使用帶有基本HTML的HTML/CSS的自定義邊框
- 21. Froala編輯器 - 自定義對話框
- 22. jqGrid自定義編輯對話框
- 23. ADO.net實體框架 - 自定義代碼
- 24. 在HTML 4框中編碼
- 25. 給定一個自定義代碼表的字符串編碼
- 26. Tumblr自定義HTML
- 27. Pytest-html自定義
- 28. Aweber自定義模板編碼
- 29. Adobe Flash自定義編解碼器
- 30. 自定義JSON編碼結構
重複http://stackoverflow.com/questions/12634366/css-arrow-with-bottom-border –