2017-03-02 11 views
1

私は、ページの上部にある灰色のボックスにテキストを配置しようとしています。何が終わるのかは、テキストが強調表示されているように見えるだけです。CSSボックスが機能しない、テキストを強調表示し続ける

box1 { 
 
    background-color: lightgrey; 
 
    width: auto; 
 
    padding: 15px; 
 
    margin: 25px; 
 
}
<box1><strong>Note:</strong> Some of these resources are free, and some aren’t. Those that are paid resources are affiliate products or services, meaning if you buy them, I get a commission at no extra cost to you.&nbsp;Please know that I have personal experience 
 
    with all of the following resources, which is why I recommend them.</box1>

ない私が欠けているものを確認してください。

+2

でテキストを折り返します。 – Shaggy

+0

将来的に問題が発生する可能性のある側面にリンクするのではなく、関連するコード、マークアップ、スクリプトなどを追加してください。詳細については、[**最小、完全、かつ検証可能なサンプルの作成方法**](http://stackoverflow.com/help/mcve)を参照してください。あなたのリンク先のサイトがこの質問を変更した場合、似たような問題を抱える将来のユーザーには冗長で無駄です。 – Nope

+0

タグ –

答えて

3

私はWebインスペクタであなたのコードを検査しました。単にbox1をclassに変更し、タグは変更しないでください。そして、HTMLには `box1`タグはありません

.box1 { 
 
    background-color: lightgrey; 
 
    width: auto; 
 
    padding: 15px; 
 
    margin: 25px; 
 
}
<p class="box1"><strong>Note:</strong> Some of these resources are free, and some aren’t. Those that are paid resources are affiliate products or services, meaning if you buy them, I get a commission at no extra cost to you.&nbsp;Please know that I have personal experience 
 
    with all of the following resources, which is why I recommend them.</p>

関連する問題