良い日私は要素内にテキストがありデスクトップ画面でしか表示されないレスポンスヘッダーで作業しています。モバイル画面で開くテキストは要素の後に置かれますが、 。デスクトップ内の要素とモバイル内の要素内のテキスト
私は私が私が考える
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