CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSでNoneを表示しない


要素を削除するには、CSSのdisplaynoneプロパティ値を使用します。 noneプロパティ値を実装する例を見てみましょう-

例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
span {
   background-color: orange;
   color: white;
}
p.demo {
   display: none;
}
span.demo1 {
   display: inline;
}
</style>
</head>
<body>
<h1>Match Details</h1>
<div>
Match will begin at <p class="demo">9AM</p> 10AM on 20th December.
</div>
<div>
Match will end at <span class="demo1">5PM</span> on 20th December.
</div>
</body>
</html>

出力

CSSでNoneを表示しない

別の例を見てみましょう-

<!DOCTYPE html>
<html>
<head>
<style>
span {
   display: none;
}
.demo2 {
   text-decoration: underline;
   text-decoration-style: double;
   text-decoration-color: red;
}
</style>
</head>
<body>
<h1>Details</h1>
<p class="demo">Examination Center near <span>XYZ College</span> ABC College.</p>
<p class="demo2">Exam begins at 11AM.</p>
</body>
</html>

出力

CSSでNoneを表示しない


  1. CSSを使用したインラインブロックの表示

    値がinline-blockのCSSDisplayプロパティは、コンテンツの幅または指定された幅のいずれか大きい方に従って要素をレンダリングします。親要素の幅が完全に使用されるまで、改行は強制されません。 構文 以下は、CSS displayinline-block-の構文です。 Selector {    display: inline-block; } 例 CSS表示のインラインブロックの例を見てみましょう- <!DOCTYPE html> <html> <head> <title>CSS Display Inline

  2. CSSの最新の更新-表示プロパティの内部値と外部値

    これで、CSS表示の2つの値の構文によって、要素の表示タイプを明示的に設定できるようになります。これにより、要素のフローレイアウトを変更できます 構文 CSS表示プロパティの構文は次のとおりです- Selector {    display: /*inside*/ /*outside*/ } 例 次の例は、CSSの表示プロパティを示しています。 <!DOCTYPE html> <html>    <head>       <style>     &nbs