在将max-width
与百分比一起使用时,我无法找到一种方法来控制固定div的宽度。
虽然降低max-width
百分比会降低div的宽度,但max-width
设置为100%(或更高)的宽度最大为可用屏幕宽度的50%。如何使用CSS增加它?
CSS
.footnote {
display: none;
position: fixed;
font-size: 0.75em;
padding: 2em 1em;
}
.footnote:target {
display: block;
max-width: 120%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
HTML
<div class="main">
<h1>ipsum</h1>
<p>ipsum <a href="#note">note</a></p>
<div ID="note" class="footnote">
<p>ipsum</p>
</div>
</div>
答案 0 :(得分:2)
您需要 specify a min-width along with max-width
。除非文本试图溢出该值,否则仅使用max-width本身不会执行任何操作。
您可以将 min-width 设置为适合您需要的px,em,rem,%,vw
。
.footnote {
display: none;
position: fixed;
font-size: 0.75em;
padding: 2em 1em;
}
.footnote:target {
background:red;
display: block;
min-width:60%;
max-width: 100%;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
<div class="main">
<h1>ipsum</h1>
<p>ipsum <a href="#note">note</a></p>
<div ID="note" class="footnote">
<p>ipsum</p>
</div>
</div>