-2

出于某种原因,我试图通过链接将我的 aboutus.html 与 main.css 连接起来,但它就是无法连接。有什么我搞砸了。请帮我弄清楚。

//HTML

<link rel="stylesheet" href="text/css" href="main.css">

//CSS

body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
    }

#aboutus h2 {
margin-bottom: 25px;
               }

.img-wrap {
width: 100%;
       }

.img-wrap  img {
width: 100%;
padding: 10px;
border-radius: 50%;
box-shadow: 0 0 10px #999999;
                }
4

2 回答 2

1

请使用以下标签包含您的 CSS,这可能对您有用 <link rel="stylesheet" type="text/css" href="main.css">

于 2019-11-25T06:29:36.197 回答
0

你已经采取了 href="text/css" href="main.css" 两次删除 href="text/css" 并检查。

于 2019-11-25T05:57:08.713 回答