CSS :nth-child() Selector Select Only the Fifth Element li:nth-child(5) { color: green; } Select All But The First Five li:nth-child(n+6) { color: green; } Select… Read More →
Articles by Al Mahbub Khan
:not() pseudo-class with multiple arguments in html input:not([type=”radio”]):not([type=”checkbox”])
Use the following code to Select Element By Specific attribute value [class^=”top”] { background: yellow; } or[class*=”me”] { background: yellow; } It doesn’t have to… Read More →
If you operate a dual-boot system with both Windows and Linux installed on your computer, you have likely encountered a frustrating and persistent problem: the… Read More →
Sublime Text Open Preference > Keybinding and add the following line. { “keys”: [“f5”], “command”: “refresh_folder_list” }
Understanding Magento 2 File System Permissions and Ownership Magento 2 installation on Ubuntu servers running Apache requires precise file system permissions and ownership configuration to… Read More →
If your Magento 2 store is not loading CSS and JavaScript, or your WordPress permalinks return 404 errors after a fresh server setup, the most… Read More →
In the ever-evolving landscape of web development, where projects are deployed across shared hosting environments, cloud servers, and local machines with varying configurations, a seemingly… Read More →
Knowing how to retrieve the current method name in PHP is one of those practical skills that separates developers who write maintainable, production-ready code from… Read More →
Screen resolution problems in Ubuntu are more common than most guides acknowledge. The display shows the wrong resolution, your monitor’s native size isn’t listed in… Read More →
VLC Media Player is the world’s most popular open-source multimedia player, renowned for its ability to play virtually any audio or video format without requiring… Read More →
To install Sublime Text on Ubuntu, the preferred method is the official Sublime Text APT repository, which provides authenticated packages and automatic updates. A manual… Read More →