我正在尝试将高度设置为相对于屏幕尺寸(高度 = 12%),但我不希望它超过某个像素高度(即最大高度:150 像素)。什么是合适的CSS。我努力了:
.titleBar {
position: relative;
background-color: #5C755E;
padding: 1%;
height: 12%;
max-height: 100px;
border-bottom: .45em solid #DEB887;
top:0;
left:0;
width: 100%;
}
但这忽略了 max-height 属性。在我的大桌面屏幕上,标题栏变成 200 像素(太大了)。