CSSでは、特定の要素の内側にある要素の隣の要素にスタイルを適用できますか?いくつかの特定の要素の内側にある要素
例:
<div class="container">
<p>bla bla bla some text</p>
<p>bla bla bla some text</p>
<p>bla bla bla some text</p>
<p> <img src="url-of-image.jpg" alt="something"/> </p>
<p>this is the text that i want to apply some style, example: bold, red color</p>
<p>bla bla bla some text</p>
<p>bla bla bla some text</p>
<p>bla bla bla some text</p>
<p> <img src="url-of-image.jpg" alt="something"/> </p>
<p>this is the text that i want to apply some style, example: bold, red color</p>
<p>bla bla bla some text</p>
<p>bla bla bla some text</p>
</div>
あなたが見ることができるように、私はちょうどimg
内部で持っているいくつかのp
た後、次のp
にスタイルを適用したいです。
.container
内のすべてのコンテンツは、データベース(MySQL)のもので、CKEditorプラグインを使用してtextarea
のPOST経由で格納されます。このプラグインはすべてp
となり、画像は同じプラグインで挿入されます。だから、ユーザーはクラスを置くことができず、テキストを入力し、イメージを挿入します(必ずしもそうではありません)。これが起こると(テキスト+ img)、次のp
はイメージフッタになります。これが私がこのようにしなければならない理由です。
これは可能ですか?
いいえ、CSSだけではありません – j08691