将两个 div 与 CSS 和 React 并排放置

新手上路,请多包涵

如图所示,我有两个组件要并排排列: 仪表板

我正在使用 React,并且带有 Negotiationfrontendfood 的组件具有从另一个组件传递的元素。

我该如何设置这个样式,以便每个元素( NegotiationFrontendfood )彼此分开,但仍然在同一列中,下一个已上线新闻它?

我的 JavaScript:

 class Course extends React.Component {
  render() {
    return (
      <div>
        <div className="coursecontent">
          <h3>{this.props.coursename}</h3>
          <h4> {this.props.status} {this.props.progress}</h4>
        </div>
        <button className="coursecontent">Start exercise</button>
      </div>
    );
  }
}

class Welcomebox extends React.Component {
  render() {
    return <h1>Welcome Naomi</h1>;
  }
}

ReactDOM.render(<Welcomebox />, document.getElementById('welcomebox'));

class Coursebox extends React.Component {
  render() {
    return (
      <div className="box-field">
        <Course coursename="Negotiation" progress= "20%" status="Progress"/>
        <Course coursename="Frontend" progress="56%" status="Progress"/>
        <Course coursename="Food" status="Progress" progress="43%"/>
      </div>
    );
  }
}

class Newsbox extends React.Component {
  render() {
    return (
      <div className="box-field" className="newsbox">
        <h3>News</h3>
      </div>
    );
  }
}

class Dashboardbox extends React.Component {
  render() {
    return (
      <div className="dashboardbox">
        <Coursebox />
        <Newsbox />
      </div>
    );
  }
}

ReactDOM.render(<Dashboardbox />, document.getElementById('dashboardbox'));

我的 CSS:

 .box-field,
.newsbox {
  width: 45%;
  background-color: lightgrey;
  font-family: arial;
  margin-left: 30px;
  height: 80%;
  padding: 5px 10px 10px 10px;
  border-radius: 10px;
  display: inline-block;
}

所以基本上,在每个 Course 元素之间,我想要空间(最好用 Margin 设置),我想要 Newsbox 组件与 Coursebox 组件。

原文由 Naomi 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 849
2 个回答

将新的 Newsbox 组件放在 Coursebox 旁边的解决方案

import Coursebox from './Coursebox';
import Newsbox  from './Newsbox'
 class ContainerRow extends React.Component {
 render(){
    return (
        <div className='rowC'>
            <Coursebox />
            <Newsbox />
        </div>
    );
    }
 }

CSS

 .rowC{display:flex; flex-direction:row;}

原文由 Aatif Bandey 发布,翻译遵循 CC BY-SA 3.0 许可协议

干得好。

 const ParentDiv = styled.div`
  & {
    width: 100%;
  }
`;

const ChildDiv = styled.div`
  & {
    display: inline-block;
    vertical-align: text-top;
    margin: 0 auto;
  }
`;

原文由 Nalan Madheswaran 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题