How to create a responsive price table?

0

I need to create a responsive price table, but I do not know how to start. I do not know if I use list or table.

Here is an example of how to stay:

Does anyone have any ideas?

    
asked by anonymous 29.07.2014 / 17:45

2 answers

2

You could be adapting this template to your liking, using same structure.

DEMO - JSFIDDLE

    
29.07.2014 / 19:26
0

You can update the property of the width of the table to 100% where depending on the screen it would fit. And to avoid that by reducing the screen a lot the table is very strange you can set a minimum size and you can also set the maximum size of the table ...

width: 100%;
min-width: 300px;
max-width: 960px;

Maybe this helps, but if the other parts of your site are not responsive, there's no point in being responsive.

    
29.07.2014 / 19:31