html – 如何使用CSS在两行之间添加空格?

前端之家收集整理的这篇文章主要介绍了html – 如何使用CSS在两行之间添加空格?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想用CSS控制布局.如何调整< input>之间的空格元素(我希望他们在两行)使用CSS?
<form name="publish" id="publish" action="publishprocess.PHP" method="post" >
     Title:<input type="text" id="title" name="title" size="60" maxlength="110" value="<?PHP echo $title ?>"
    <br/><div>Contact<input type="text" id="contact" name="contact" size="24" maxlength="30" value="<?PHP echo $contact ?>" /></div><br/>
    Task description(You may include task description,requirements on bidders,time requirements,etc):<br/>
     <textarea name="detail" id="detail" rows="7" cols="60" style="font-family:Arial,Helvetica,sans-serif"><?PHP echo $detail ?></textarea>

      <br/><br/>
      price <input type="text" id="price" name="price" size="10" maxlength="20" value="<?PHP echo $price ?>" /><br/>
       <label> Skill or Knowledge Tags</label><br/><input class="tagvalidate" type="text" id="tag" name="tag" size="40" maxlength="60" value="<?PHP echo $tag ?>" />
        <br/><label>Combine multiple words into single-words,space to separate up to 3 tags<br/>(Example:photoshop quantum-physics computer-programming)</label><br/><br/>
        District Restriction:<?PHP echo $locationtext.$cityname; ?><br/><br/>

    <input type="submit" id="submit" value="submit" /></form>

如你所见,我使用< br />分离元素并获得空格,是否有更好的方法呢?

解决方法

#detail {margin-bottom:5px;}
原文链接:https://www.f2er.com/html/223991.html

猜你在找的HTML相关文章