简体   繁体   中英

Make first line of textarea be on same position as bullet in list-item

I have <ul> list.

For every li I've modify bullets style:

ul {
    list-style: none;
}

ul li:before{
    content: "\2022";
    font-size: 170%;
    margin-left: -16px;
}

And my list looks like :

<ul>
    <li>
        <textarea name="txtBullet1" rows="2" cols="70" id="txtBullet1" tabindex="20" onkeyup="maxLen(this);" required="required" style="width:100%;"></textarea>
    </li>
</ul>

But textArea is upper than my bullet. I've tried padding and margin to move it lower, but doesn't help

You can use vertical-align:middle; with textarea and bullet

 ul { list-style: none; } ul li:before{ content: "\\2022"; font-size: 170%; margin-left: -16px; vertical-align:middle; } textarea { padding:0; vertical-align:middle; } 
 <ul> <li> <textarea name="txtBullet1" rows="2" cols="70" id="txtBullet1" tabindex="20" onkeyup="maxLen(this);" required="required" style="width:100%;"></textarea> </li> </ul> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM