const cards = document.getElementsByClassName('card'); for(const card of cards){ card.style.backgroundColor = 'red' }
样式属性工作不正常。它在两行之前工作,现在不工作了。请帮助我找到解决方案。
f0brbegy1#
你必须在卡片上给予一些高度或填充。然后它就会显示出来。
for(const card of cards){ card.style.backgroundColor = 'red' card.style.padding= '20px'}
1条答案
按热度按时间f0brbegy1#
你必须在卡片上给予一些高度或填充。然后它就会显示出来。