我真的不喜欢css3的调整大小属性。有什么办法可以改变吗?
答案 0 :(得分:1)
在CSS中没有默认的方法来执行此操作。但是,如果您使用jQuery UI的resizable函数,则可以提供解决方案。 SQL
和<Router history={history}>
<Switch>
<Route exact path="/over/here" component={SomePlace} />
<Redirect from="/" to="/over/here" />
</Switch>
</Router>
代表<Redirect to="some/other/place" />
和<Router history={history}>
<Switch>
<Route exact path="/tutor/apply" component={TutorApplication} />
<Route exact path="/" render={() => <Redirect to="/tutor/apply" />} />
</Switch>
</Router>
。
e
这是一个工作的小提琴:http://jsfiddle.net/nick_craver/bx2mk/