我是SCSS的新手,并且我试图保持网站封面图像的良好质量。无论如何,css运作良好,而scss却无法运作。
SCSS
#page-login-index {
@media screen and (min-aspect-ratio: 5/4) {
background-color: red;
}}
Run Code Online (Sandbox Code Playgroud)
的CSS
@media screen and (min-aspect-ratio: 5/4) {
#page-login-index {
background-color: red;
}}
Run Code Online (Sandbox Code Playgroud)
我需要在SCSS中执行此操作,因为我从PHP加载了一些东西。我注意到当min-height正常工作时,aspect-ratio和device-aspect-ratio不起作用。
无论如何在symfony2中的EasyAdmin包中做一对多的关系?
到目前为止,我让我的用户工作,但不是其他具有一对多关系的实体.
我在MySQL的学说中有数据库.