textarea旁边的中心div

时间:2011-10-10 06:49:16

标签: html css textarea center vertical-alignment

如何将文本放在textarea旁边? enter image description here

http://jsfiddle.net/47NyA/

谢谢!

3 个答案:

答案 0 :(得分:2)

Pure css

http://jsfiddle.net/47NyA/7/

这可能对您有用:

<html>
<head>
    <title>

    </title>
    <style type="text/css">
        /* style here */

        div#main{
            position:relative;
            vertical-align:middle;
        }

        textarea{
        }

        div.right{
            position:absolute;
            top:45%;
            right:0px;
            width: 100px;
        }
    </style>

</head>
<body>
    <div id="main">
        <textarea></textarea>
        <div class="right">
            TEXT
        </div>
    </div>
</body>
</html>

JavaScript解决方案:

这可能对您有用:

http://jsfiddle.net/47NyA/4/

让我知道它是否有效。

<script type="text/javascript">

        jQuery(document).ready(function(){
           // set init (default) state   
           var t = jQuery('#text_area');

           t.data('x', t.outerWidth());
           t.data('y', t.outerHeight());

           t.mouseup(function(){
              var th = jQuery(this);
              if (th.outerWidth()!= th.data('x') || th.outerHeight() != th.data('y'))

              // set new height/width
              th.data('x', th.outerWidth());
              th.data('y', th.outerHeight());
              $("#center_text").css("margin-top", (th.outerHeight()/2 - 20) + "px");
           });


        });
</script>

答案 1 :(得分:1)

尝试使用此

<div style="display:table">     
    <label for="textarea">Description</label><br>  
    <textarea id="textarea" style="display: table-cell;"></textarea>
    <div style="vertical-align: middle; display: table-cell; width:100px; text-align:center; border:#f00 1px solid;">Text</div>
</div>

还要检查Fiddle

答案 2 :(得分:0)

您可以使用Javascript获取textarea的高度,并更新右侧的行高,将text align设置为center