【发布时间】:2019-09-03 15:53:29
【问题描述】:
我试图通过仅更改 CSS 来实现一些目标而不更改 HTML。
在两列中,textarea-div 的宽度应该是两倍, 一列的 textarea-div 宽度不应更改,
https://www.bilder-upload.eu/upload/c314f9-1567495199.png 抱歉,我没有声誉,无法发布图片
<style>
.paragraph {line-height: 20px;display: inline-block;padding: 4px;}
.text,.textarea{display: block;width: 200px;}
</style>
<div class="form form_shortcode">
<form target="_self" method="post">
<p class="paragraph"><input type="text" class="text"></p>
<p class="paragraph"><input type="email" class="text"></p>
<p class="paragraph"><input type="text" class="text"></p>
<p class="paragraph"><input type="text" class="text"></p>
<p class="paragraph"><textarea class="textarea" rows="3"></textarea></p>
</form>
</div>
【问题讨论】:
-
重要提示:“仅通过更改 CSS 来更改 HTML。”。因此,不幸的是我无法更改 HTML。我只能做 CSS 调整