我正在使用登錄表單(在vaadin中)。我使用CSS樣式來獲取背景顏色。問題是它沒有顯示100%的頁面效果。css v-verticallayout,如何設置高度
我沒有對鉻 「考察」,發現 「V-VerticalLayout的V型佈局的V垂直V型插件V-具有寬度」 具有element.style沒有高度。如果我將element.style的高度添加到100%(在chrome的檢查工具上),效果可以看到整頁。我怎樣才能在CSS
下解決這個問題是我的CSS
.dmr{
@include valo;
background-image: url(sciome-vector-logo.png);
background-position: left top;
background-repeat: no-repeat;
background-size: 120px 80px;
/* Applies to every page */
html {
height:100%;
margin-bottom:1px ;
color:black;
}
body {
overflow-y: scroll;
}
.v-slot {
overflow: hidden;
height:100%;
}
.entire_div {
text-align: center;
height: 100%;
}
.v-verticallayout-entire_content_div {
text-align: center;
height:100%;
width:100%;
}
.div{
height: 100%;
}
.entire_content_div {
margin: auto;
height: 100%;
}
/* Main view properties */
.v-slot-page_content_div {
height: calc(100% - 55px);
overflow-y: auto;
}
.page_content_div {
text-align: center;
min-height: 80vh;
height: 100%;
}
.v-slot-login {
height: 100%;
}
}
您是否對HTML文件有直接訪問權限? –
不,我正在使用vaadin。所以我使用CSS類將樣式設置爲不同的組件。 – user1631306
好吧,所以你不能添加任何類到HTML元素 –