问答详情
源自:6-7 留下您宝贵的意见 - 使用<textarea>标签创建文本域

怎么把个人简介放在左上角??

怎么把个人简介放在左上角??

thanks

提问者:clearcache_me 2016-08-16 19:16

个回答

  • F_Geek
    2016-08-16 19:31:16
    已采纳

    <html>

    <head>

    <style type="text/css">

        .position{padding-top:1px;

                        padding-right:100%;

                        padding-bottom:100%;

                        padding-left:1px;

                        margin-top:1px;}
    </style>

    </head>

    <body>

        <div class="position">

                <p>个人简历</p>

        </div>

    </body>

    </html>

  • 随风去3836665
    2016-08-16 19:41:32

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>无标题文档</title>
    <style>
    #个人简历
    {
        float: right;
    }
    </style>
    </head>

    <body>
    <div id="个人简历">个人简历</div>
    </body>
    </html>

    其他的一些属性你也可以设置一下。

  • 慕丝5304739
    2016-08-16 19:33:55

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>文本域</title>

    <style>

       p{

           font-size:10px;

           }

    </style>

    </head>

    <body>

    <form action="save.php" method="post" >

        <p >个人简介:<p>

        <textarea cols="50" rows="10">在这里输入内容...</textarea>

        <input type="submit" value="确定"  name="submit" />

        <input type="reset" value="重置"  name="reset" />

    </form> 

    </body>

    </html>


  • 自由之做自己不想做的事
    2016-08-16 19:29:36

    position:absolute;left:0;top:0;父级position:relative;