Posts

Showing posts with the label responsive table

How to create responsive table using HTML and CSS

Image
We will create a responsive table using HTML and CSS. We are going to create a responsive table with html and css. it will show the price in a responsive with the sing up button. Here is the table: The source code: <! DOCTYPE   html > < html > < head > < meta   name = "viewport"   content = "width= device-width, initial-scale=1.0" > < style > *  {      box-sizing : border-box; } .columns  {      float : left;      width :  33.3% ;      padding :  8px ; } .price  {      list-style-type : none;      border :  1px  solid #eee;      margin :  0 ;      padding :  0 ;      -webkit-transition :  0.3s ;      transition :  0.3s ; } .price:hover  {     ...