Posts by Ulisses Caon • 66 points
2 posts
- 
		0 votes3 answers1225 viewsA: How to distribute images horizontally equally within a Section element?An alternative would be to use the flex. As simple as: section{ display: flex; flex-direction: row; justify-content: space-between; align-items: center; } <section> <img… cssanswered Ulisses Caon 66
- 
		5 votes2 answers769 viewsA: Send file to remote server with PHPThe rsync, for Gnu/Linux, perform synchronization between folders, so whenever you add images in your local folder they will be sent to the remote directory. It is also possible to configure it in…