我的页面上有很多内容,还有一个表单,显示用户点击按钮的时间。我可以像使用flexbox那样将表单居中:
.container-column {
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
}
这是形式的中心,但这种方法的问题是它将我的其余内容推下来,这在视觉上没有吸引力。我尝试添加{9}的z-index
但这不起作用。我也使用了position:absolute
,但这只是将表单堆叠在左上角。
是否有一种简单的方法可以将表单放在页面中间,而将其余内容保留为原样?我很好用覆盖其余内容的表单。
更新1 根据要求,以下是相关代码:
Form
:
return (
<form className="container-column">
<div className="icon ion-ios-close-empty close-btn" onClick={() => this.props.signupBtnClick('close')}></div>
<input type="text" name="firstname" placeholder="firstname" className="form-element"></input>
<input type="text" name="lastname" placeholder="lastname" className="form-element"></input>
<input type="text" name="username" placeholder="username" className="form-element"></input>
<input type="password" placeholder="password" className="form-element"></input>
<input type="password" placeholder="repeat password" className="form-element"></input>
<input type="email" name="email" placeholder="email" className="form-element"></input>
<input type="submit" value="submit" className="form-element btn-form2"></input>
</form>
)
Form
是一个反应组件,在index
页面中使用如下:
return (
<div>
<section className="section-header">
<div className="container-row signup-login-btns">
<button className="btn btn-form1" onClick={() => this.renderLoginForm()}>Login</button>
<button className="btn btn-form2" onClick={() => this.renderSignupForm()}>Signup</button>
</div>
{this.state.showSignupForm ? <SignupForm signupBtnClick={(type) => this.onSignupClick(type)} />: null }
**other content, which gets pushed down once the form is shown**
相关的css课程:
.form-element {
border:none;
align-content:center;
text-align:center;
outline:none;
width: 400px;
height: 45px;
margin: 10px;
color: #7f8c8d;
font-size:120%;
border-radius:10px;
}
.section-header {
background: #d53369;
/* fallback for old browsers */
background: -webkit-linear-gradient(to left, #d53369, #cbad6d);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #d53369, #cbad6d);
margin-top:0px;
padding-top:0px;
padding-bottom:5%;
}
答案 0 :(得分:1)
试试这个:
body {
position: relative;
}
.container-column {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
}
有关此居中方法的详细信息,请参阅: Element will not stay centered, especially when re-sizing screen