css:before
とに問題があり:after
ます。これは私のhtmlです:
<div id = "test-box">
1
</div>
そしてこれは私のCSSです:
#test-box:before{
content: "hello";
}
私が実行すると、これは完全に機能し、次のように出力されます。hello 1
しかしdiv
、既存のものの中に別のものを入れるdiv
と、それは機能しません。これは新しいhtmlです:
<div id = "test-box">
<div>1</div>
</div>
この場合、ブラウザは次のように出力します。
hello
1
1の左側にこんにちは滞在が必要です。