Replace HTML Table with Divs

来源:https://www.cnblogs.com/kungfupanda/archive/2020/04/30/12806465.html
-Advertisement-
Play Games

https://stackoverflow.com/questions/702181/replace-html-table-with-divs 55 19 Alright, I'm trying to buy into the idea that html tables should not be ...


https://stackoverflow.com/questions/702181/replace-html-table-with-divs

55

Alright, I'm trying to buy into the idea that html tables should not be used, and that divs should be. However, I often have code that resembles the following

<table>
    <tr>
        <td>First Name:</td>
        <td colspan="2"><input  id="txtFirstName"/></td>
    </tr>
    <tr>
        <td>Last Name:</td>
        <td colspan="2"><input  type="text" id="txtLastName"/></td>
    </tr>
    <tr>
        <td>Address:</td>
        <td>
            <select type="text" id="ddlState">
                <option value="NY">NY</option>
                <option value="CA">CA</option>
            </select>
        </td>
        <td>
            <select type="text" id="ddlCountry">
                <option value="NY">USA</option>
                <option value="CA">CAN</option>
            </select>
        </td>
    </tr>
</table>

I want the labels to be aligned and I want the controls to be aligned. How would I do this without using tables?

   share edited Sep 23 '16 at 20:50 Brian Tompsett - 湯萊恩 4,7741414 gold badges4242 silver badges113113 bronze badges asked Mar 31 '09 at 17:39 Jacob Adams 3,90633 gold badges2020 silver badges4141 bronze badges show 3 more comments

6 Answers

ActiveOldestVotes 43  

This ought to do the trick.

<style>
div.block{
  overflow:hidden;
}
div.block label{
  width:160px;
  display:block;
  float:left;
  text-align:left;
}
div.block .input{
  margin-left:4px;
  float:left;
}
</style>

<div class="block">
  <label>First field</label>
  <input class="input" type="text" id="txtFirstName"/>
</div>
<div class="block">
  <label>Second field</label>
  <input class="input" type="text" id="txtLastName"/>
</div>

I hope you get the concept.

share edited Mar 30 '13 at 18:57     community wiki
3 revs, 3 users 80%
partoa
  • 4 Thanks, I get the idea. This is basically what I thought. However, it seems pretty ugly to have to hard code the column widths, especially into the style, which should be separated from the content. – Jacob Adams Mar 31 '09 at 19:10
  •   Addendum: I would suggest aligning the labels to the right, for better readability. – DisgruntledGoat Jul 4 '09 at 23:43
add a comment 26

Please be aware that although tables are discouraged as a primary means of page layout, they still have their place. Tables can and should be used when and where appropriate and until some of the more popular browsers (ahem, IE, ahem) become more standards compliant, tables are sometimes the best route to a solution.

share answered Mar 31 '09 at 18:26 KOGI 3,78222 gold badges2121 silver badges3131 bronze badges add a comment 10

I looked all over for an easy solution and found this code that worked for me. The right div is a third column which I left in for readability sake.

Here is the HTML:

<div class="container">
  <div class="row">
    <div class="left">
      <p>PHONE & FAX:</p>
    </div>
    <div class="middle">
      <p>+43 99 554 28 53</p>
    </div>
    <div class="right"> </div>
  </div>
  <div class="row">
    <div class="left">
      <p>Cellphone Gert:</p>
    </div>
    <div class="middle">
      <p>+43 99 302 52 32</p>
    </div>
    <div class="right"> </div>
  </div>
  <div class="row">
    <div class="left">
      <p>Cellphone Petra:</p>
    </div>
    <div class="middle">
      <p>+43 99 739 38 84</p>
    </div>
    <div class="right"> </div>
  </div>
</div>

And the CSS:

.container {
    display: table;
    }
.row  {
    display: table-row;
    }
.left, .right, .middle {
    display: table-cell;
    padding-right: 25px;
    }
.left p, .right p, .middle p {
    margin: 1px 1px;
   }
share edited Dec 23 '13 at 10:10 NeutralTone 322 bronze badges answered Sep 13 '12 at 12:40 Wavesailor 62588 silver badges1818 bronze badges add a comment 4

You can create simple float-based forms without having to lose your liquid layout. For example:

<style type="text/css">
    .row { clear: left; padding: 6px; }
    .row label { float: left; width: 10em; }
    .row .field { display: block; margin-left: 10em; }
    .row .field input, .row .field select {
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -khtml-box-sizing: border-box;
    }
</style>

<div class="row">
    <label for="f-firstname">First name</label>
    <span class="field"><input name="firstname" id="f-firstname" value="Bob" /></span>
</div>
<div class="row">
    <label for="f-state">State</label>
    <span class="field"><select name="state" id="f-state">
        <option value="NY">NY</option>
    </select></span>
</div>

This does tend to break down, though, when you have complex form layouts where there's a grid of multiple fixed and flexible width columns. At that point you have to decide whether to stick with divs and abandon liquid layout in favour of just dropping everything into fixed pixel positions, or let tables do it.

For me personally, liquid layout is a more important usability feature than the exact elements used to lay out the form, so I usually go for tables.

share answered Mar 31 '09 at 18:56 bobince 475k9797 gold badges607607 silver badges791791 bronze badges add a comment 1

Basically it boils down to using a fixed-width page and setting the width for those labels and controls. This is the most common way in which table-less layouts are implemented.

There are many ways to go about setting widths. Blueprint.css is a very popular css framework which can help you set up columns/widths.

share edited Mar 31 '09 at 17:53     answered Mar 31 '09 at 17:47 Ken Browning 26k66 gold badges5151 silver badges6666 bronze badges add a comment 1

there is a very useful online tool for this, just automatically transform the table into divs:

http://www.html-cleaner.com/features/replace-html-table-tags-with-divs/

And the video that explains it: https://www.youtube.com/watch?v=R1ArAee6wEQ

I'm using this on a daily basis. I hope it helps ;)

share  
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1、基本術語 1)信息:指數據加工處理後有用的數據。 2)信息的3種世界: (1)現實世界:存在於人腦之外的客觀世界。 (2)信息世界:現實世界在人腦中的反映。 (3)數據世界:將信息世界中的信息通過抽象和組織,按特定的數據結構,將數據存儲於電腦中。 3)數據:描述事物的符號記錄。 (1)數據處理 ...
  • 織夢dedecms如何讓內容頁顯示不同的內容,但是每次更新都不變。 今天圈子裡面有個朋友,給我提了一個需求,他的內容頁裡面有個相關推薦,他想每個內容頁顯示的內容都不一樣,但是內容要固定的,更新不要變。 一般我們的做法就是調用織夢的隨機排序,但是隨機當然就是變的,就達不到他的要求. 所以在此給出了一個 ...
  • 各位碼農小伙伴們,在使用MSSQL編輯器時候是否覺得沒有一款格式化工具,寫出來的代碼很不美觀,在團隊中,做code review時候,每個人風格不一,對比不夠直接呢? 我給大家推薦一款SQL Pretty Printer。效果直接上圖。沒有格式化的sql如下: 通過SQL Pretty Printe ...
  • 一、動態添加碎片 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_p ...
  • 有個天坑,我帶領大家避開 Mac上折騰了一星期,不成功,放棄了 過了幾個星期不死心,又去官方看了下發現更新了SDK版本,在試一下 鬼使神差的用了台式機來測試集成,下載了官方DEMO,編譯不成功 新建一個empty項目,把官方demo移植過來,修改命名空間也就是package,.net搞多了就這麼叫了 ...
  • 金三銀四跳槽季,轉眼已漸入尾聲,我作為部門的面試官,在此期間也收穫了不少簡歷。但可惜的是,收到的簡曆數量雖多,但令人中意的卻是鳳毛菱角,一些應聘者倒不是因為自身能力不足而無法進入面試環節,而是簡歷本身就沒有很好的展示出自己的能力,因此與面試的機遇擦肩而過。為了避免類似的「悲劇」反覆出現,我打算藉著掘 ...
  • 插件 1. "left scroll actions" A useful left scroll actions widget like WeChat.一款仿微信效果的 Flutter 左滑菜單插件。現在支持iOS的展開與彈性效果。 1. "flutter screen scaler" A pack ...
  • js原型鏈 js原型鏈是什麼? 在思考這個問題的時候,我們可能會有很多概念,【鏈子】、【祖先】、【father】 1. 要理解 首先要理解 對象的屬性 都指向其他對象,Object.prototype 的 例外。 2. 單純從 鏈 這個這個詞來理解,js原型鏈更像是一種copy 或 引用。 簡單理解 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...