英文:
I have a problem with Bootstrap background color
问题
这是我的HTML代码,它可以运行,但在Bootstrap的背景颜色方面给了我问题,因为我不想要背景颜色。如何消除它?有人可以帮我吗?
我放了一个结果的图片。点击这里查看图片描述
这是我的代码
我在互联网上搜索过,但没有帮助。这是一个学校项目。
英文:
This is my html code, it works but it gives me a problem with the body background-color of the bootstrap, 'cause I don't want to have a background color. How can I eliminate it? Can someone help me?
I put an image of the result.enter image description here
This is my code
I searched on the internet but, it didn't help. It's for a school project.
答案1
得分: 1
你可以覆盖主体的 CSS 样式:
body {
background-color: transparent;
}
英文:
You can override body CSS styles:
body {
background-color: transparent;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论