Some useful mixins for sass that can be used to faster build your project.
Front-end
[CSS] Make equal-height Bootstrap columns and vertically align content with Flexbox
In this post, let’s see how to make columns in a row from Bootstrap to have equal height no matter how much content is inside.
Simple slide up and fade text animation with CSS3 [Code + Demo]
In this post, we will make a simple slide up and fade text animation with CSS3 and HTML.
[CSS] Simple parallax [Code + Demo]
This code implements a simple parallax section with only CSS, no Javascript needed. The idea is that an image will be set as the background image of a section with fixed position, so that when people scroll down, the image stays fixed.
Code refactoring: When and How
In general, code refactoring refers to the process of changing bad codes into cleaner, purposeful, human-readable, reusable code in order to be cost effective, easy to maintain and collaborate, and probably a better performance.
[HTML] Form button issue and solution: Upload button behaves as a submit button
When pressing button Upload, the form submitted itself. Let’s fix this.