18
A
回答
29
#watermark
{
position:fixed;
bottom:5px;
right:5px;
opacity:0.5;
z-index:99;
color:white;
}
+0
我需要的東西,即使在滾動時,總是保持相同的地方 – demonoid
+0
^這樣做 - 對不起小提琴didn不會更新。現在就試試。 – ElendilTheTall
3
爲了使固定:嘗試這種方式,
jsFiddleLink:http://jsfiddle.net/PERtY/
<div class="body">This is a sample body This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample bodyThis is a sample bodyThis is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
v
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
This is a sample body
<div class="watermark">
Sample Watermark
</div>
This is a sample body
This is a sample bodyThis is a sample bodyThis is a sample body
</div>
.watermark {
opacity: 0.5;
color: BLACK;
position: fixed;
top: auto;
left: 80%;
}
要使用絕對:
.watermark {
opacity: 0.5;
color: BLACK;
position: absolute;
bottom: 0;
right: 0;
}
的jsfiddle:http://jsfiddle.net/6YSXC/
2
你可以使用opacity:0.5;//what ever you wish between 0 and 1
這一點。
工作Fiddle
-1
可能這可能是對你有很大的幫助。
div.image
{
width:500px;
height:250px;
border:2px solid;
border-color:#CD853F;
}
div.box
{
width:400px;
height:180px;
margin:30px 50px;
background-color:#ffffff;
border:1px solid;
border-color:#CD853F;
opacity:0.6;
filter:alpha(opacity=60);
}
div.box p
{
margin:30px 40px;
font-weight:bold;
color:#CD853F;
}
檢查this link一次。
相關問題
- 1. 創建使用HTML和CSS
- 2. 使用jQuery和asp.net創建水印
- 3. 如何使用CSS和HTML創建水平樹視圖?
- 4. 創建HTML和CSS
- 5. 創建使用SVG和HTML/CSS
- 6. 幫助創建使用CSS和HTML
- 7. 使用CSS和HTML創建Sprite圖像
- 8. 使用Spring,IText,水印創建PDF
- 9. 如何使用imagemagick創建水印
- 10. 使用HTML/CSS創建帶標籤的水平線規則
- 11. 使用css創建水平樹
- 12. 創建與jQuery,HTML和CSS
- 13. 使用HTML/CSS創建可打印文檔
- 14. HTML內容和水印
- 15. 在Python中創建水印
- 16. 用html和css創建樣式表格
- 17. 用HTML 5和CSS 3創建「截圖」?
- 18. 創建HTML模塊,洽CSS和HTML
- 19. 使用CSS創建重複的水平和垂直虛線
- 20. HTML和CSS水平調整
- 21. 水平翻轉html和css
- 22. HTML和CSS水平列表
- 23. 用extbase創建水印的圖像
- 24. 水印CSS不打印
- 25. 創建使用CSS3和HTML
- 26. 創建使用HTML和JavaScript
- 27. 使用定位從HTML + CSS創建PDF
- 28. 創建HTML + CSS網站移動使用
- 29. 如何使用圖像和標籤(HTML和CSS)創建菜單?
- 30. 使用HTML和CSS創建橫向和縱向佈局
您應該應用不透明度:.6;例如和位置絕對div。 –
對於水印,您可以使用某些樣式爲div定位,並將其固定在您喜歡的位置。既然你只想要html和css,這可以做到。 –
@srekoble也許jsfiddle? – demonoid