ホームページ >ウェブフロントエンド >htmlチュートリアル >背景色属性には継承_html/css_WEB-ITnose がありますか?
background-color 属性の継承はありますか:
オブジェクトの背景はデフォルトで透明であるため、親オブジェクトが背景色を設定すると、子オブジェクトも親の背景色として表示されます。子オブジェクトが継承しているかのようにオブジェクト。親オブジェクトの背景色が変更されます。これは実際には視覚的なエラーです。例を使用して、background-color に継承がないことを説明しましょう。
サンプルコード:
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="author" content="http://www.51texiao.cn/" /><title>蚂蚁部落</title><style type="text/css"> .parent { width:200px; height:200px; border:1px solid red; background-color:green; } .children { width:120px; height:120px; border:1px solid red; position:relative; left:150px; } </style> </head> <body> <div class="parent"> <div class="children"></div> </div> </body> </html>
元のアドレス: http://www.51texiao.cn/div_cssjiaocheng/2015/0507/904.html
最もオリジナルのアドレス: http://www.softwhy. com/forum.php?mod=viewthread&tid=4647