美好的一天我一直在一個響應頭文件中工作,其中有一個元素內的文本,但只有在桌面屏幕上,在移動屏幕上打開文本應該後面的元素,但與一些格式樣式。桌面和移動設備中的元素內的文本
我知道 「內容」 屬性不支持HTML標籤,使我跑出來的非janky思想關於
http://codepen.io/tillegomezz/pen/rrjJxR
header {
background: #ccc;
height: 50px;
text-align: center;
width: 100%;
}
.content {
background: lightblue;
}
@media all and (max-width: 768px) {
header span {
display: none;
}
.content:before {
content: "<h1>Title Outside</h1>";
}
}
<div class="container">
<header>
<span> Title Inside </span>
</header>
<div class="content">
lorem ipsum foo bar so on.
</div>
</div>
改變,而不是把一個代碼塊中的鏈接繞過代碼的要求,它的建議只是將代碼放在你的問題的實際車。這個網站上的人會更有可能以這種方式幫助你。 – Serlite
k,謝謝@Serlite – user1040363