-1
A
回答
3
該內容屬性保留爲:before
和:after
僞元素選擇器。您不能使用CSS更改元素的內容。 (除非你隱藏/放置元素在它上面的/ etc)
所以,你可以這樣做:
body:after{
content: "YES";
color: lightblue;
display: block;
text-align: center;
}
,但它不會改變body
內容。
1
號
內容屬性決定什麼是元素或僞元素中呈現。
對於元素,它只有一個目的:指定元素呈現爲正常,或用圖像替換元素(可能還有一些關聯的「替代文本」)。
由於您的目標是一個元素(而不是僞元素),所以您無法使用CSS更改文本內容。
0
有可能使用CSS顯示內容。要顯示content
,您需要僞選擇器,:before
或:after
。
要居中它,您需要使用flexbox。演示:
body {
/* become a flex container */
/* pseudoselectors are also children so they will be treated as flex-items */
display: flex;
/* vertically center flex-items */
align-items: center;
/* horizontally center flex-items */
justify-content: center;
margin: 0;
/* make body occupy minimum 100% of screen height */
min-height: 100vh;
background: lightblue;
}
body:before {
content: 'YES';
}
或使用pseudoelement絕對定位。演示:
body {
background: lightblue;
}
body:before {
content: 'YES';
position: absolute;
/* remove this if you don't need vertical centering */
top: 50%;
/* remove this if you don't need horizontal centering */
left: 50%;
/* replace with translateX(-50%) if you need only horizontal centering */
/* replace with translateY(-50%) if you need only vertical centering */
transform: translate(-50%, -50%);
}
相關問題
- 1. 比較網站的文本內容
- 2. 構建文本內容網站的正確方法是什麼?
- 3. CSS文本響應網站
- 4. CSS響應文本內容
- 5. 如何實現在網站中移動內容/文本。在asp.net
- 6. 如何使網站的內容正文響應
- 7. 爲Ajax網站PHP內容文件
- 8. 是否有iOS的API來提取網站的內容文本
- 9. CSS-從右到左的文本內容
- 10. c#如何讀取網站的內容爲文本?
- 11. 網站內容
- 12. HTML/CSS正文內容邊框
- 13. 與TinyMCE組成內容css正文類
- 14. 正在切斷的網站內容
- 15. 網站設計 - 僅更改正文內容
- 16. 網站正在顯示文件夾內容
- 17. 內容屬性文本顏色 - css
- 18. 僅將CSS應用於文本內容
- 19. python庫從網站獲取內容(http文本)?
- 20. 文本繁重的網站如何在內部存儲文本?
- 21. 內容文本
- 22. 如何使用Python 3提取文章網站的文本內容?
- 23. Flexbox:中心正文內容
- 24. CSS電網內容中心
- 25. 如何保持與背景圖片中心對齊的網站正文(內容)
- 26. 如何識別網站的內容語言,如英文,日文,中文等
- 27. Css根據文本內容將內容包裝在一起
- 28. '正常化'CSS的網站?
- 29. 如何管理asp.net網站中的文章內容
- 30. 在網站的#文檔中訪問內容
你要找的':after'。 – SLaks
@SLaks或':之前(或之前)' – j08691