CSS ﻝﻭﺪﺟ ﮏﺒﺳ


فهرست مطالب

    نمایش فهرست مطالب


ﯼﺰﯿﻣﻭﺭ

ﺪﯿﻨﮐ ﻩﺩﺎﻔﺘﺳﺍ ﺕﺭﺎﺒﻋ ﺯﺍ ،ﻝﻭﺪﺟ ﮏﯾ ﯼﺍﻮﺘﺤﻣ ﻭ ﻪﯿﺷﺎﺣ ﻦﯿﺑ ﯼﺎﻀﻓ ﻝﺮﺘﻨﮐ ﯼﺍﺮﺑ

First Name Last Name Savings
Peter Griffin $100
Lois Griffin $150
Joe Swanson $300

ﻝﺎﺜﻣ

th, td
{
   
padding: 15px;
  text-align: left;
}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
table, td, th {  
  border: 1px solid #ddd;
  text-align: left;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 15px;
}
</style>
</head>
<body>

<h2>The padding Property</h2>

<p>This property adds space between the border and the content in a table.</p>

<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>Peter</td>
    <td>Griffin</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td>Griffin</td>
    <td>$150</td>
  </tr>
  <tr>
    <td>Joe</td>
    <td>Swanson</td>
    <td>$300</td>
  </tr>
  <tr>
    <td>Cleveland</td>
    <td>Brown</td>
    <td>$250</td>
  </tr>
</table>

</body>
</html>



ﯽﻘﻓﺍ ﯼﺎﻫ ﻩﺪﻨﻨﮐ ﻢﯿﺴﻘﺗ

First Name Last Name Savings
Peter Griffin $100
Lois Griffin $150
Joe Swanson $300

:ﺪﯿﻨﮐ ﻪﻓﺎﺿﺍ ﯽﻘﻓﺍ ﯼﺎﻫﻩﺪﻨﻨﮐﻢﯿﺴﻘﺗ ﯼﺍﺮﺑ <td> ﻭ <th> ﻪﺑ ﺍﺭ

ﻝﺎﺜﻣ

th, td {
  border-bottom: 1px solid #ddd;
}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
</style>
</head>
<body>

<h2>Bordered Table Dividers</h2>
<p>Add the border-bottom property to th and td for horizontal dividers:</p>

<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
  <th>Savings</th>
  </tr>
  <tr>
    <td>Peter</td>
    <td>Griffin</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td>Griffin</td>
    <td>$150</td>
  </tr>
  <tr>
    <td>Joe</td>
    <td>Swanson</td>
    <td>$300</td>
  </tr>
  <tr>
    <td>Cleveland</td>
    <td>Brown</td>
    <td>$250</td>
  </tr>
</table>

</body>
</html>



ﺪﯾﺭﺍﺩ ﻪﮕﻧ HTML ﻝﻭﺪﺟ ﯼﻭﺭ ﺍﺭ ﺱﻭﺎﻣ

.ﺪﯿﻨﮐ ﻩﺩﺎﻔﺘﺳﺍ ﺱﻭﺎﻣ ﯼﻭﺭ ﻝﻭﺪﺟ ﯼﺎﻫﻒﯾﺩﺭ ﻥﺩﺮﮐ ﻪﺘﺴﺟﺮﺑ ﯼﺍﺮﺑ ﺭﺩ

First Name Last Name Savings
Peter Griffin $100
Lois Griffin $150
Joe Swanson $300

ﻝﺎﺜﻣ

tr:hover {background-color: coral;}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:hover {background-color: coral;}
</style>
</head>
<body>

<h2>Hoverable Table</h2>

<p>Move the mouse over the table rows to see the effect.</p>

<table>
  <tr>
    <th>First Name</th>
    <th>Last Name</th>
    <th>Points</th>
  </tr>
  <tr>
    <td>Peter</td>
    <td>Griffin</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td>Griffin</td>
    <td>$150</td>
  </tr>
  <tr>
    <td>Joe</td>
    <td>Swanson</td>
    <td>$300</td>
  </tr>
  <tr>
    <td>Cleveland</td>
    <td>Brown</td>
    <td>$250</td>
  </tr>
</table>

</body>
</html>




ﻩﺍﺭ ﻩﺍﺭ HTML ﻝﻭﺍﺪﺟ

First Name Last Name Savings
Peter Griffin $100
Lois Griffin $150
Joe Swanson $300

:(ﺩﺮﻓ ﺎﯾ) ﺝﻭﺯ ﻝﻭﺪﺟ ﯼﺎﻫ ﻒﯾﺩﺭ .ﺪﯿﻨﮐ ﻪﻓﺎﺿﺍ ﻪﻤﻫ ﻪﺑ backg

ﻝﺎﺜﻣ

tr:nth-child(even) {background-color: #f2f2f2;}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {background-color: #f2f2f2;}
</style>
</head>
<body>

<h2>Striped Table</h2>

<p>For zebra-striped tables, use the nth-child() selector and add a background-color to all even (or odd) table rows:</p>

<table>
  <tr>
  <th>First Name</th>
  <th>Last Name</th>
  <th>Points</th>
  </tr>
  <tr>
  <td>Peter</td>
  <td>Griffin</td>
  <td>$100</td>
  </tr>
  <tr>
  <td>Lois</td>
  <td>Griffin</td>
  <td>$150</td>
  </tr>
  <tr>
  <td>Joe</td>
  <td>Swanson</td>
  <td>$300</td>
  </tr>
  <tr>
  <td>Cleveland</td>
  <td>Brown</td>
  <td>$250</td>
  </tr>
</table>

</body>
</html>



HTML ﻝﻭﺪﺟ ﮓﻧﺭ

ﺪﻨﮐ ﯽﻣ ﺺﺨﺸﻣ ﺍﺭ ﻪﻨﯿﻣﺯ ﺲﭘ ﮓﻧﺭ ﺮﯾﺯ ﻝﺎﺜﻣ

First Name Last Name Savings
Peter Griffin $100
Lois Griffin $150
Joe Swanson $300

ﻝﺎﺜﻣ

th {
  background-color: #04AA6D;
  color: white;
}

→ ﺪﯿﻨﮐ ﻥﺎﺤﺘﻣﺍ ﺍﺭ ﻥﺁ ﻥﺎﺗﺩﻮﺧ

<!DOCTYPE html>
<html>
<head>
<style>
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}

th {
  background-color: #04AA6D;
  color: white;
}
</style>
</head>
<body>

<h2>Colored Table Header</h2>

<table>
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>Peter</td>
    <td>Griffin</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>Lois</td>
    <td>Griffin</td>
    <td>$150</td>
  </tr>
  <tr>
    <td>Joe</td>
    <td>Swanson</td>
    <td>$300</td>
  </tr>
  <tr>
    <td>Cleveland</td>
    <td>Brown</td>
    <td>$250</td>
</tr>
</table>

</body>
</html>


تمامی حقوق محفوظ است. © BasicIT.org • 2023-2024