0
嗨我想填充一些文本溢出和填充,但底部填充不起作用像頂部,左側和右側邊界的其餘部分。CSS:溢出y和填充調整
我嘗試添加文本溢出,但這不起作用。 :(
我想看到的 「測試」 一詞被部分隱藏,並沒有觸及黑色邊框。
body, html {
\t margin: 0;
\t padding: 0;
\t display: flex;
\t justify-content: center;
\t align-items: center;
\t height:100%;
\t width: 100%;
}
.css {
\t width: 220px;
\t height: 220px;
\t border: solid 6px black;
\t font-size: 45pt;
\t padding: 10px 17px;
\t font-family: arial, sans-serif;
\t font-weight: 600;
\t line-height: 90%;
\t box-sizing: border-box;
\t background-color:red;
\t overflow:hidden;
\t text-overflow:'';
}
<div class="css">CSS IS AWESOME TEST</div>
https://codepen.io/StoptThisRetard/pen/eRrrJg
安置自己嘗試代碼。 – LKG
調整css高度或使用overflow-y:scroll – Momin