14

我想要做的是将一个按钮附加到 textarea 的右下角,如下所示:

在此处输入图像描述

但是,我不知道该怎么做。请帮忙!

4

4 回答 4

26

您可以使用 css 将按钮绝对定位在那里。

这是一个演示:http: //jsfiddle.net/GwheP/

div{
  display:inline-block;
  position:relative;
}

button{
  position:absolute;
  bottom:10px;
  right:10px;
}

textarea{
  display:block;
}
<div>
  <textarea name="" id="txt" cols="20" rows="5"></textarea>
  <button>Submit</button>
</div>

于 2013-06-05T00:51:23.370 回答
5

现场演示

HTML

<div class="wrapper">
    <textarea name="somename" id="" cols="20" rows="10"></textarea>
    <div class="controls">
        <button>Post as Anonymous</button>
    </div>
</div>

CSS

*{
    padding: 0;
    margin:0;
}
.wrapper{
    background: #eee;
    border: 1px solid #999;
    width: 600px;
}
.wrapper textarea{
    background: linear-gradient(to bottom, #e5e5e5 0%,#f2f2f2 100%);
    border:none;
    width:100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px dotted #999;
    resize: none;
}
.wrapper textarea:focus{
    outline: none;
}
.controls{
    text-align: right;
    margin-top: -6px;
}
button{
    background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
    border: 1px solid #999;
    padding: 10px 25px;
    font-weight: bold;
    color: rgb(77,77,77);
    border-width: 1px 0 0 1px;
}
于 2013-06-05T00:54:38.770 回答
5

试试下面的,

<div id='container' style='width:600px; border:1px solid black;'>
    <textarea style='border-style:none none dashed none; border-color:black; width:100%; display:block;box-sizing:border-box;border-width:1px; margin-bottom:1px;'></textarea>
    <div style='width:100%; box-sizing:border-box; height:35px;padding:5px;'>
        <button style='float:right'>Lama mama
        </button>
    </div>
</div>

也在这里

于 2013-06-05T00:46:19.773 回答
0

我希望这个 css 可以帮助您使按钮适合右角的 textarea ......因为对齐背景位置......

textarea {
width: 100px;
height: 50px;
padding-right: 20px;
background-image: url('http://www.isilo.com/support/manual/iSiloIP/img/gearIcon.gif');
background-position: top right;
background-repeat: no-repeat;}
于 2016-03-18T12:53:21.670 回答