私は疑似要素の動作について混乱しています。次のように私はのようなCSS疑似要素:前に
The :before and :after pseudo-elements W3Cから学ぶだから、私の質問は:
HTML:
<div id="breadcrumbs">this is a old content.</div>
はCSS:
#breadcrumbs:before {
content:"this is a new content."
}
私は新しいコンテンツが内側に挿入するかどうかを知りたいですdivタグまたは外側にあります。 1が正しい
<div id="breadcrumbs">this is a new content.this is a old content.</div>
this is a new content<div id="breadcrumbs">this is a old content.</div>
?ありがとうございます!
リンクから引用:_最初の文字列を含め、段落全体に緑色の枠線をレンダリングする必要があります。_ – NGLN