尝试使用javascript来操作DOM css

问题描述 投票:0回答:0

我尝试使用 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)

javascript html css dom
© www.soinside.com 2019 - 2024. All rights reserved.