我似乎无法将我的想法包裹在这个问题上。
似乎通过向我的文本区域添加一些填充(padding-left:3px),并将其从我的带有边框的 div 中推出。在摘要框中为文本添加一些填充将很有用,因为它对用户来说更易读。
结果如下:
这应该是这样的:
这是 HTML / CSS 标记:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
.fcontent_text {
font-size: 8.5pt;
text-align: right;
color: rgb(11,63,113);
}
#fcontent_container {
width: 800px;
display: block;
position: relative;
margin: 5px;
}
#fcontent_wrapper {
border: 1px solid rgb(128,128,128);
}
#summary {
width: 100%;
margin: 0;
border: 0;
position: relative;
padding-left: 3px;
height: 50px;
}
</style>
</head>
<body>
<div id="fcontent_container">
<div class="fcontent_text">Summary</div>
<div id="fcontent_wrapper"><textarea class="normal" id="summary"></textarea></div>
</div>
</body>
</html>