2015-02-09 76 views

回答

0

我用它选择:after通过使用CSS3 @media查询定义的行为来解决。

这里是我的代码:

.form-container { 
    position: relative; 
} 

.form-container:after { 
    content: ""; 
    height: 320px; 
    position: absolute; 
    right: -202px; 
    top: 0px; 
    border-right: 202px solid #764B3A; 
} 

@media screen and (max-width: 991px) { 
    .form-container:after { 
     border-right: none; 
    } 
}