@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,700&display=swap');
:root{
--sidebar-flex:1.5;
--condiv-flex:6;
--fontsize-p:1.2rem;
--fontsize-nav:1.6rem;
--typing-font:3rem;
}
* {
margin:0;
padding: 0;
}
body {
font-family: "Montserrat", Arial, sans-serif;
background: #fff;
background: purple;
font-size: 15px;
line-height: 1.8;
font-weight: 500;
color: #999999;
}
.App {
display: flex;
width: 100vw;
min-height: 100vh;
}
/* .condiv class is for the right side content container*/
.condiv{
background: #fff;
width: 100%;
float: right;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
@media (min-width: 992px) {
.condiv {
width: 75%;}}
/* For Home Page */
.home {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
这是一个 React 应用程序,我试图让 condiv 向右浮动,但由于某种原因它向左浮动。我无法判断是否有其他属性干扰了它,但我将不胜感激任何见解。我读过也许我应该将 condiv 和 home 分成 2 个不同的 div,但这并没有改变任何东西。我的condiv主页的div是:
<div className='condiv home'>
<img src={profilePic} className='profilepic'></img>
<ReactTypingEffect className='typingeffect' text={["Hi, I'm Chad"]} speed={100} eraseDelay={700}/>
<Social/>
</div>
可以在这里找到我的整个存储库的链接:https://github.com/ChadLei/chadei
白猪掌柜的
慕哥6287543
拉莫斯之舞
相关分类