开发者

textarea scrollbars overflow and hide div border

开发者 https://www.devze.com 2022-12-13 19:14 出处:网络
I\'ve tried this on many browsers ( via browsershots ) and universally the scrollbars overflow and hide the green border.

I've tried this on many browsers ( via browsershots ) and universally the scrollbars overflow and hide the green border.

I don't want overflow: hidden because that clips the scrollbars.

How do I get the scrollbars开发者_如何学Go inside the border, instead of obscuring the border?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<div style="border: 1px solid green; margin: 0pt; padding: 0pt; width: 100%; height: 100px;">
    <div style="margin: 0pt; padding: 0pt; position: relative; float: left; width: 20%; height: 100%;">
        <select style="margin: 0pt; padding: 0pt; width: 100%; height: 100%;" multiple >
        <option></option>
        </select>
    </div>
    <div style="position: relative; float: left; width: 80%; height: 100%;">
        <form style="margin: 0pt; padding: 0pt; width: 100%; height: 100%; display: inline; position: relative;">
            <textarea readonly="readonly" style="margin: 0pt; padding: 0pt; width: 100%; height: 100%; overflow:scroll;" wrap="off" >
            </textarea>
        </form>
    </div>
</div>
</body>
</html>


Text area must have rows attribute. Rows assume font size. Font size and rows will overflow the container.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号