Welcome to Tips of the day! Here our some css components people asks about.
Code 1:
1 2 3 4 5 6 |
/* This code will effect the whole page */ * { /* Code here*/ } |
Code 2:
1 2 3 4 |
/* This will place an object in center */ margin:auto; padding:auto; |
Code 3:
1 2 3 4 5 6 7 |
/* This will reset basic browser stuff */ margin:0; padding:0; border:0; /* usually placed between *{ /* here */} */ |
Leave a Reply