Skip to content

Instantly share code, notes, and snippets.

View Yovvel's full-sized avatar
😊

Joffrey Nolting Yovvel

😊
View GitHub Profile
If your time does not permit the close supervision of your project then i am here for your help related with LAMP or LEMP Stack and others.
Contact Me For Engaged Your Works:
Telegram: https://t.me/LinuxGun
WhatsApp: https://wa.link/5ow7oz
#!/bin/bash
# This will remove Apache
sudo service apache2 stop
sudo apt-get purge apache2 apache2-utils apache2.2-bin
*{
background-color: rgba(0,0,0,0.1);
}
Trick to debug when dealing with css box models.
by using the "*" you select all elements of the page.
Then, te next line of code is used to give every element a slighty darker color shade.
By doing this, every element which is nested in another element will get slightly darker than its parent element.
This is ideal to understand the padding and margins are affecting the surrounding elements.