簡體   English   中英

CSS Margin 在 React typescript 項目中不起作用

[英]CSS Margin not working in React typescript project

CSS 邊距在我的反應 typescript 項目中不起作用

我的代碼:

const Home: React.FC = () => {
return (
<div style={{ width: "100vw", background: "skyblue" }}>
  <div
    style={{
      background: "red",
      height: "100px",
      width: "100px",
      marginLeft: "100px",
    }}
  ></div>
</div>
);
};

此項目的 Codesandbox 鏈接

您的邊距被邊距覆蓋margin: 0px !important在您的App.css文件中聲明

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM