如何将绿色框取代成黄色框和黄色框放入绿色框中?那么有没有css属性?帮忙

时间:2017-11-27 02:19:14

标签: javascript html css alignment box

https://www.sololearn.com/Discuss/884349/?ref=app

这是sololearn playground中的代码。

1 个答案:

答案 0 :(得分:0)

在你的css中替换左右两部分的color属性。

应如下:

  #left-panel {
    background-color: orange;
    height: 100px;
  }

  #right-section {
    background-color: green;
    height: 500px;
  }