HTML Design - заменить таблицу на div - PullRequest
0 голосов
/ 19 февраля 2019

У меня есть особый дизайн, который мне нужно полностью реализовать с помощью тегов <div>, но я не могу этого сделать, используя теги <table>, которые необходимо заменить.Запрос экспертизы.Ниже приведен дизайн:

Design

Ниже приведен код, с которым я пытался и боролся:

<div>
  <div class="row">
    <div class="col">
      <input type="label" value="fees">
    </div>
    <div class="col">
      <input type="label" value="1,258">
    </div>
  </div>
  <div class="row">
    <div class="col">
      <input type="label" value="cost">
    </div>
    <div class="col">
      <input type="label" value="200">
    </div>
  </div>
  <div class="row">
    <div class="col">
      <input type="label" value="Grand Total">
    </div>
    <div class="col">
      <input type="label" value="1,458">
    </div>
  </div>
</div>

1 Ответ

0 голосов
/ 19 февраля 2019

Используйте этот код ниже и примените css как хотите ...

.divTable{
	display: table;
	width: 400px;;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 0;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}
    <div class="divTable">
        <div class="divTableBody">
            <div class="divTableRow">
                <div class="divTableCell" style="text-align:right;">&nbsp;Fees</div>
                <div class="divTableCell">&nbsp;1258</div>
            </div>
            <div class="divTableRow">
                <div class="divTableCell" style="text-align:right;">&nbsp;Cost</div>
                <div class="divTableCell">&nbsp;20k</div>
            </div>
            <div class="divTableRow">
                <div class="divTableCell" style="text-align:left; border-top: 1px solid #000;">&nbsp;Grand Total</div>
                <div class="divTableCell" style="border-top: 1px solid #000;">&nbsp;1458</div>
            </div>
        </div>
    </div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...