పట్టికను సూచించడానికి 'డిస్ప్లే' ప్రాపర్టీని ఎలా ఉపయోగించాలి?
దిగువ పట్టిక మీకు ఒకే మూలకాన్ని సూచించడానికి ' టేబుల్ ' ట్యాగ్ మరియు సంబంధిత మద్దతు ఉన్న CSS ప్రాపర్టీ మధ్య సంబంధాన్ని అందిస్తుంది. కాబట్టి, పట్టికను సృష్టించేటప్పుడు, మీరు చేయాల్సిందల్లా, HTML ' టేబుల్ ' ట్యాగ్కు బదులుగా, కేవలం ' div ' ట్యాగ్ని ఉపయోగించండి మరియు పట్టికను ప్రదర్శించడానికి సంబంధిత CSSని జోడించండి.
<పట్టిక> | {డిస్ప్లే: టేబుల్} |
<tr> | {ప్రదర్శన: పట్టిక-వరుస} |
<thead> | {డిస్ప్లే: టేబుల్-హెడర్-గ్రూప్} |
<tbody> | {డిస్ప్లే: టేబుల్-రో-గ్రూప్} |
<tfoot> | {డిస్ప్లే: టేబుల్-ఫుటర్-గ్రూప్} |
<col> | {డిస్ప్లే: టేబుల్-కాలమ్} |
<colgroup> | {డిస్ప్లే: టేబుల్-కాలమ్-గ్రూప్} |
<td>, <th> | {డిస్ప్లే: టేబుల్-సెల్} |
<శీర్షిక> | {డిస్ప్లే: టేబుల్-క్యాప్షన్} |
దశ 1: టేబుల్ కోసం మాస్టర్ డివిని సృష్టించండి
HTML
<div class="d-tbl"></div>
CSS
.d-tbl {
width: 100%;
display: table;
border-collapse: collapse;
}
దశ 3: టేబుల్ క్యాప్షన్, హెడర్, బాడీ, ఫుటర్ని సృష్టించండి
HTML
<div class="d-tbl">
<div class="d-tbl-head"></div>
<div class="d-tbl-body">/div>
<div class="d-tbl-foot"></div>
</div>
CSS
.d-tbl-caption{
display: table-caption;
text-align: center;
font-weight: bold;
}
.d-tbl-head,
.d-tbl-foot {
display: table-header-group;
background-color: white;
}
.d-tbl-body {
display: table-row-group;
}
దశ 3: టేబుల్ రోలు, సెల్, హెడ్-సెల్, ఫుట్-సెల్ సృష్టించండి
HTML
<div class="d-tbl">
<div class="d-tbl-head">
<div class="d-tbl-row">
<div class="d-tbl-cell d-tbl-head-cell">Header 1</div>
<div class="d-tbl-cell d-tbl-head-cell">Header 2</div>
<div class="d-tbl-cell d-tbl-head-cell">Header 3</div>
<div class="d-tbl-cell d-tbl-head-cell">Header 4</div>
</div>
</div>
<div class="d-tbl-body">
<div class="d-tbl-row">
<div class="d-tbl-cell">Column 1</div>
<div class="d-tbl-cell">Column 2</div>
<div class="d-tbl-cell">Column 3</div>
<div class="d-tbl-cell">Column 4</div>
</div>
</div>
<div class="d-tbl-foot">
<div class="d-tbl-row">
<div class="d-tbl-cell d-tbl-head-foot">Footer 1</div>
<div class="d-tbl-cell d-tbl-head-foot">Footer 2</div>
<div class="d-tbl-cell d-tbl-head-foot">Footer 3</div>
<div class="d-tbl-cell d-tbl-head-foot">Footer 4</div>
</div>
</div>
</div>
CSS
.d-tbl-row {
display: table-row;
}
.d-tbl-cell {
display: table-cell;
padding: 5px;
border: 1px solid #dee2e6;
}
.d-tbl-head-cell,
.d-tbl-foot-cell {
font-weight: bold;
}
ఫలితం
దశ 4: టేబుల్కి స్క్రోల్ బార్ని జోడించండి
HTML
<div class="p_fix_table">
<div class="d-tbl">
<div class="d-tbl-head" id="d-tbl-fix-head"></div>
<div class="d-tbl-body" id="d-tbl-fix-body" onscroll="tblFixScroll('d-tbl-fix-head', 'd-tbl-fix-body')"></div>
</div>
</div>
CSS
.p_fix_table {
width: 100%;
max-height: 250px;
overflow: hidden;
}
.p_fix_table .d-tbl {
display: flex;
flex-direction: column;
flex: 1 1 auto;
width: 100%;
max-height: 250px;
border: 1px solid #dee2e6;
border-collapse: collapse;
overflow: hidden;
}
.p_fix_table .d-tbl-head {
flex: 1 0 auto;
display: block;
overflow-x: hidden;
overflow-y: scroll;
scrollbar-base-color: #dee2e6;
scrollbar-face-color: #dee2e6;
scrollbar-highlight-color: #dee2e6;
scrollbar-track-color: #dee2e6;
scrollbar-arrow-color: #dee2e6;
scrollbar-shadow-color: #dee2e6;
}
.p_fix_table .d-tbl-head::-webkit-scrollbar {
display: block;
background-color: transparent;
}
.p_fix_table .d-tbl-head::-webkit-scrollbar-track {
background-color: transparent;
}
.p_fix_table .d-tbl-body {
display: block;
overflow: scroll;
max-height: 220px;
}
.p_fix_table .d-tbl-body:nth-child(3) {
display: none;
}
.p_fix_table .d-tbl-cell,
.p_fix_table .d-tbl-head-cell {
width: 170px;
min-width: 170px;
padding: 5px;
border: 1px solid #dee2e6;
}
.p_fix_table .d-tbl-row .d-tbl-cell:first-child,
.p_fix_table .d-tbl-row .d-tbl-head-cell:first-child {
position: sticky;
left:0;
background: white;
z-index: 1;
}
JS
function tblFixScroll(thead_id, tbody_id) {
let thead = document.getElementById(thead_id);
let tbodyScroll = document.getElementById(tbody_id).scrollLeft;
thead.scrollLeft = tbodyScroll;
//document.getElementById("frozen").scrollLeft = 0;
}