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:...") |
|||
Line 13: | Line 13: | ||
</head> | </head> | ||
<body> | <body> | ||
+ | <div class="grid"> | ||
+ | <div class="griditem"> One </div> | ||
+ | <div class="griditem"> two </div> | ||
+ | </div> | ||
</body> | </body> | ||
</html> | </html> |
Revision as of 17:21, 27 April 2018
One
two