我如何做动态尺寸框
How I Do Dynamic Size box
我有一个盒子,当我选择东西时,我想在那里看到我的选择(比如购物车)。
我希望盒子是动态的,这意味着盒子里不会有文字溢出(No text overflow down)
HTML
<div class="box-s">
<p style="text-align: left; width:49%; display: inline-block;">{{mealService.getName()}}</p>
<p style="text-align: right; width:49%; display: inline-block;">{{mealService.getPrice()}}$</p>
CSS
.box-s{
position: absolute;
top: 10px;
right: 10px;
width: 300px;
height: 350px;
background: #fff;
color: #9e9e9e;
margin: 0 auto;
margin-bottom: 20px;
text-align: center;
line-height: 35px;
font-family: "Forte";
font-size: 20px;
}
谢谢:)
我的解决方案是在 css 文件中需要将高度更改为 min-height
.box-s{
position: absolute;
top: 10px;
right: 10px;
width: 300px;
min-height: 350px;
background: #fff;
color: #9e9e9e;
margin: 0 auto;
margin-bottom: 20px;
text-align: center;
line-height: 35px;
font-family: "Forte";
font-size: 20px;
}
我有一个盒子,当我选择东西时,我想在那里看到我的选择(比如购物车)。 我希望盒子是动态的,这意味着盒子里不会有文字溢出(No text overflow down)
HTML
<div class="box-s">
<p style="text-align: left; width:49%; display: inline-block;">{{mealService.getName()}}</p>
<p style="text-align: right; width:49%; display: inline-block;">{{mealService.getPrice()}}$</p>
CSS
.box-s{
position: absolute;
top: 10px;
right: 10px;
width: 300px;
height: 350px;
background: #fff;
color: #9e9e9e;
margin: 0 auto;
margin-bottom: 20px;
text-align: center;
line-height: 35px;
font-family: "Forte";
font-size: 20px;
}
谢谢:)
我的解决方案是在 css 文件中需要将高度更改为 min-height
.box-s{
position: absolute;
top: 10px;
right: 10px;
width: 300px;
min-height: 350px;
background: #fff;
color: #9e9e9e;
margin: 0 auto;
margin-bottom: 20px;
text-align: center;
line-height: 35px;
font-family: "Forte";
font-size: 20px;
}