网页设计应用 [英] Web Design Application

查看:68
本文介绍了网页设计应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尊敬的所有专家,

在进行Web应用程序设计时,< dev>垂直是如何像下面一样明智地选择列.

Dear all Experts,

At the time of web application design <dev> is vertically how to take the column wise like below.

<dev>


</dev>


上面是垂直

我们需要




above is vertically

we need the



<dev>       <dev>     <dev>

</dev>       </dev>    </dev>



我需要在一种Web表单中进行三列明智的设计

感谢您的宝贵重放.



i need three column wise design in one web form

Thanks you for your valuable replay.

推荐答案

您必须使用table,tr,td概念.

You have to use table, tr, td concept.

<table>
  <tr>
    <td> <b><div>1st column</div></b> </td>  <td> <b><div>2nd column</div></b> </td>  <td> <b><div>3rd column</div></b> </td>
  </tr>
</table>


使用"HTML列表"及其样式.
http://www.w3schools.com/css/css_list.asp

尝试如下.如果要在"li"或其他HTML标记中包含"div",这取决于您.

Use "HTML Lists" and it''s styles.
http://www.w3schools.com/css/css_list.asp

Try as below. It''s up to you, if you want to have "div" inside "li" or some other HTML Tag.

<div id="mainDiv">

<ul>
 <li style="float:left;list-style-type:none;">
  <div id="div1">Column 1</div>
 </li> 

 <li style="float:left;list-style-type:none;">
  <div id="div2">Column 2</div>
 </li> 

 <li style="float:left;list-style-type:none;">
  <div id="div3">Column 3</div>
 </li> 
</ul>

</div>


这篇关于网页设计应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆