How to change background color using CSS
How to change background color using CSS problem You wish to change the background color of the whole page or any other sub segment of the website. In this post we are going to see how to accomplish this by using CSS – Cascading Style Sheet. SOLUTION Using a CSS property. In particular, the property […]
Hide elements on mobile version using CSS
hide elements on mobile version using css problem You designed a web page and a particular element needs to appear only when the user visits the page from their Desktop. If the user visits the page from a smaller device, like a mobile or tablet, the element needs to be hidden. SOLUTION CSS has a […]
How to make an item transparent in CSS
Transparency in CSS Problem On a web page an HTML element is placed on another and the first one wish to look and feel transparent. Solution The CSS has a declaration called opacity. Example We have an example HTML page with solid background color and a button placed on that. HTML The code looks like […]