Difference between revisions of "CSS grid"
Jump to navigation
Jump to search
(Created page with "<html> <head> <style> .grid { display:grid; grid-template-columns: auto auto auto; border: darkblue thin solid; } .griditem { border:...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 13: | Line 13: | ||
</head> | </head> | ||
<body> | <body> | ||
+ | <div class="grid"> | ||
+ | <div class="griditem"> One <div> inner content </div></div> | ||
+ | <div class="griditem"> two </div> | ||
+ | </div> | ||
</body> | </body> | ||
</html> | </html> |
Latest revision as of 17:22, 27 April 2018
One
inner content
two