Here是一个相当简单的双列CSS布局。
我已在width
及其包含列中将height
和textarea
设置为100%,但textarea
仅在水平方向上展开。
CSS:
.twocol {
-moz-column-count: 2;
-webkit-column-count: 2;
}
#left {
display: inline-block; /* stop flow across columns */
width: 100%; /* otherwise textarea width is limited */
}
#right {
display: inline-block; /* stop flow across columns */
}
#left textarea {
width: 100%;
height: 100%;
min-height: 8ex;
}
#left p {
text-align: right;
}
我希望textarea
元素具有最大可能的大小(同时将def
段放在其下方“)。我该怎么做?
答案 0 :(得分:0)
您可以使用textarea
这样修复rows
的高度:<textarea rows="15">abc</textarea>
因此请检查它是否适合您。