html js_cc_06_challenge_dom

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html js_cc_06_challenge_dom相关的知识,希望对你有一定的参考价值。

    var large = document.getElementById('large');
    var box1  = document.getElementById('box1');
    var box2  = document.getElementById('box2');
  
    large.style.backgroundColor = 'black';
    box1.innerHTML = '文字色は赤、文字サイズは24p';
    box1.style.color = 'red';
    box1.style.fontSize = '24px';
    box2.innerHTML = '文字色は白、文字サイズはデフォルト';
    box2.style.color = 'white'; 
js_cc_06_challenge_dom
----------------------


A [Pen](https://codepen.io/m-shinkawa/pen/QxdJGo) by [m-shinkawa](https://codepen.io/m-shinkawa) on [CodePen](https://codepen.io).

[License](https://codepen.io/m-shinkawa/pen/QxdJGo/license).
  <div id="large">
    <div id="box1">1行目(赤文字)</div>
    <div id="box2">2行目(白文字)</div>
  </div>

以上是关于html js_cc_06_challenge_dom的主要内容,如果未能解决你的问题,请参考以下文章

markdown js_cc_06_apple

markdown js_cc_06_not_object

markdown js_cc_06_challenge_object

markdown js_cc_06_not_array_sample

html js_cc_08_add_event

html js_cc_08_add_event2