Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

how to make a 3*3 grid using html,css and javascript

.grid {
  display: table;
  border-spacing: 2px
}
.row {
  display: table-row
}
.cell {
  width: 100px;
  height: 100px;
  background: black;
  display: table-cell;
}
.row div:last-child {
  background: blue
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: nodejs: router by use express and path package 
Javascript :: new function in javascript 
Javascript :: javasccript this.innerHTML 
Javascript :: what is closure 
Javascript :: JQuery .hasClass for multiple values in an if statement 
Javascript :: Map put() method 
Javascript :: is date 1 day ago javascript 
Javascript :: array class javascript 
Javascript :: Movie-app using react 
Javascript :: js insert 
Javascript :: js function run one another 
Javascript :: nvm use a particular version 
Javascript :: boolean as string javascript 
Javascript :: how to select last element in a array 
Javascript :: using server passed values and client js together in ejs 
Javascript :: airbnb react native eslint 
Javascript :: calling javascript from java 
Javascript :: Remove all falsy values from an array 
Javascript :: javascript map method 
Javascript :: sequelize queryinterface select 
Javascript :: string in js 
Javascript :: pass a variable by reference to arrow function 
Javascript :: js loop through array 
Javascript :: how to remove the last value of javascript array 
Javascript :: arrow function example 
Javascript :: some in js 
Javascript :: get last element from array javascript 
Javascript :: js use await in synchronous method 
Javascript :: unexpected end of json input 
Javascript :: object 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =