我尝试使用 JavaScript 操作 DOM,我尝试使用 JavaScript 更改 css 颜色和背景颜色
const container=document.body
container.append(`you attaach the append to the body first `)
const div=document.createElement(`div`)
div.style.cssText='color:red; background-color: blue;'
container.append(div)