Skip to main content

                                     Use CSS variable(Table style)

                                                 

This is CSS sheet

/* table anamition */
.table332 tr:nth-child(even):hover{
    background-color: rgba(248, 103, 51, 0.849);
}
.table332 tr:nth-child(odd):hover{
    background-color: rgba(248, 103, 51, 0.849);
}
tr, th{
    padding: 20px;
    text-align: center;
}
.table332{
    margin-left: 30px;
   
}
.table332 tr:nth-child(even){
    background-color: rgb(180, 172, 172);
}
.table332 tr:nth-child(odd){
    background-color: rgb(119, 173, 10);
}

This is HTML sheet

<div >
                   <table class="table332">
                <caption><h1>This is my Group stadey Reopet.</h1></caption><br>
                       <tr style="height: 30px
                       ;">
                           <th>ID</th>
                           <th>Class</th>
                           <th>Help</th>
                           <th>About</th>
                       </tr>
                       <tr>
                           <td>101</td>
                           <td>Nine</td>
                           <td>0170965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>102</td>
                           <td>Nine</td>
                           <td>0130965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>103</td>
                           <td>Nine</td>
                           <td>0180965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>104</td>
                           <td>Nine</td>
                           <td>0150965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>104</td>
                           <td>Nine</td>
                           <td>0150965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>104</td>
                           <td>Nine</td>
                           <td>0150965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>104</td>
                           <td>Nine</td>
                           <td>0150965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                       <tr>
                           <td>104</td>
                           <td>Nine</td>
                           <td>0150965245</td>
                           <td>Lorem ipsum dolor sit amet consectetur adipisicing elit. Magni, quis.</td>
                       </tr>
                   </table>
               </div>
               <div class="div-clear"><br><hr><br>

Comments

Popular posts from this blog

feture

Use  <nav>,<figure>,<ifrem>,<samp>,<var> Tag < html lang = "en" > < head >   < meta charset = "UTF-8" >   < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >   < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >   < style >     header {       text-align : center ;     }     body {       background-color : rgb ( 196 , 152 , 72 );     }     .agp {       width : 100% ;       height : 250px ;    }     .fcss {     border : 3px solid red ;     border-radius : 5px ;     padding : 5px ;     margin : 2px ;     width : 50% ;    }     .fs {       text-align : center ;     }     .t1 , .t2 , .t3 , .t4 {       background-colo...
Use CSS variable (form and list style)  If you want icon like -list ..Go to this wed -site : https://fontawesome.com/v5.15/icons?d=gallery&p=2&q=tick And attest HTML <header> this link : <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> This is CSS sheet /* form style */ .text-are12 {     resize : none ;     border : 3px solid rgb ( 71 , 3 , 3 );     border-radius : 5px ;     margin : 10px ; } input [ type = "submit" ], input [ type = "reset" ]{     width : 90px ;     border : none ;     margin : 10px ;     border-radius : 5px ;     padding : 5px ;     background-color : olivedrab ;     color : white ;     cursor : pointer...