Html Tables Tags

Example A simple HTML table, containing two columns and two rows <!DOCTYPE html><html><head><style>table, th, td {border: 1px solid black;}</style></head><body> <h1>The table element</h1> <table><tr><th>Month</th><th>Savings</th></tr><tr><td>January</td><td>$100</td></tr><tr><td>February</td><td>$80</td></tr></table> </body></html> The table element Month Savings January $100 February $80 Definition and Usage The <table> tag characterizes a HTML table. A HTML table comprises of one <table> component and at least one…

Read article
Hot TopicsWeb Designcss3Mobile Websitehtml5

CSS Grid Layout Module

Grid Layout The CSS Grid Layout Module offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning.   Display Property An HTML element becomes a grid container when its display property is set to grid or inline-grid.   (Xanax xr)

Read article