This is an example for displaying the data in a table format with the use of HTML and CSS. The entire page has the styles of position as relative, height as 100%, background as rgba(0,0,0,.3), font family as 'Roboto', sans-serif, font weight as 300, font size as 17 and font color as #777. Implementation of the curve effect on the border of the quiz window has been accomplished by setting the border radius as 4px. The other styles which are applied for the quiz window are; position as absolute, left as 0, right as 0, top as 50px, margin as auto, width as 600px, background as #fff and overflow as hidden. By setting the overflow as hidden, the scroll bars will not be displayed. The title of the table has the font size as 18px, width as 40%, min width as 160px, font weight as normal and padding top as 3px. credits - https://codepen.io/sdhnik/pen/JdVaow
This is a simple example of displaying the details in a table format that has a fixed table header; with the use of HTML, CSS and JavaScript. The table elements in HTML have been used to display the data in a table format. The table header has the background value of rgba(255,255,255,0.3) and the table has the styles of width as 100% and table layout as fixed. The table header text is automatically converted to upper case with the use of the class ‘text transform’ with the value of uppercase in CSS styles. The styles of the table header are set to padding as 20px 15px, text align as left, font weight as 500, font size as 12, and font color as #fff. The background color of the entire page has been implemented with a shade of two colors by setting the background class as linear-gradient (left, #25c481, #25b7c4). credits - https://codepen.io/nikhil8krishnan/pen/WvYPvv
This is an example of displaying the details in a table format with the use of HTML and CSS. The table elements in HTML have been used to organize the data in a table format. The width for the responsive value has been declared as a variable in CSS so the same variable can be re used in several places in the CSS file. The intention of making the view responsive has been accomplished by the implementation of the media queries with the value of min width as 480px. The table has the styles of margin as 1em 0 and the min width as 300px. The table header cells have the styles of display as none and the table data have the value of display as block. The table row have the border styles of border top as 1px solid #ddd and border bottom as 1px solid #ddd. credits - https://codepen.io/geoffyuen/pen/FCBEg
This is a simple example of displaying the details such as prices and more information in a responsive table format with the use of HTML and CSS. The container has been implemented with the styles of margin right as auto, margin left as auto, padding left as 15px and padding right as 15px. The title of the page is designed with the use of margin as 0 and text align as center. Media queries in CSS have been used with the values of min width as 768px and min width as 992px in order to make the table responsive. The styles will be dynamically changed on the given elements based on the screen size of the user. The price column has the styles of list style as none, padding as 0, margin as 10px 1px, position as relative, display as block and float as left. credits - https://codepen.io/thingo/pen/LkwHu
This is an example of displaying the prices in a table format with the use of HTML and CSS. Each table is styled with the use of div HTML tag and setting the styles display as table. The complete page background has been set to the color of #2e2a2a using the background class, font size is set as 62.5%, and the font family as 'Roboto', Arial, Helvetica, Sans-serif, Verdana. The mouse hover event has been implemented with the use of the hover event in the CSS class. To implement the zoom-in effect on the table to make it bigger on a mouse hover event, the style class of transform has been used in CSS with the value of scale (1.06) increasing the size in a 1.06 ratio. The style of the table is set with background as #FFF and the font color as #403d3a. credits - https://codepen.io/Creaticode/pen/pHEyJ
This is an example for the design of a HTML5 table using HTML and CSS. The background color of the page has been set to the value of #fb887c using the background class, font color is set as #fff and font family is set to 'Lato', Arial, sans-serif. The title of the table is designed with the element h1 and with the styles of font family as "proxima-nova", sans-serif, letter spacing as -0.01em, font weight as 700 and font style as normal. The HTML element row span has been used to merge rows for a given element; such as setting the rowspan value to 2 will merge two rows together for a given element. The border of the table and the cells has been set the style value of border 1px solid #fff and border-collapse as collapse. The thickness of the border is 1px. The table headers and the table data cells have its padding as 15px. credits - https://codepen.io/DavidKern/pen/PwzYvv