css syntax examples

Solutions on MaxInterview for css syntax examples by the best coders in the world

showing results for - "css syntax examples"
Gael
03 Jun 2019
1body {
2  background-color: #282c34;
3  color: white;
4  padding: 40px;
5  font-family: Arial;
6  text-align: center;
7}
8
Maria José
16 Aug 2017
1#description{
2    font-size: 30px;
3    color:#21CF31;
4}
5body{
6    text-align: center;
7    background-image:linear-gradient(to right,#B5BE27,pink)
8}
9.header{
10    color:#1E2AC8;
11}
Thais
25 Feb 2019
1selector {property: value; }