by P&T BROS | Apr 22, 2015 | Blog, HTML & CSS Tutorials, Web Designs |
Today We are sharing about the CSS border properties. The CSS border properties allows you to work on border style, size, and colour. We are going to share some samples and make a beautiful website using the border properties. Sample 01. Border Size .box { border:7px... by P&T BROS | Apr 20, 2015 | Blog, HTML & CSS Tutorials, Web Designs |
Are you trying to centre an element horizontally using css? Here are few methods to centre an element through css. It will help you to centre text and elements in div while developing a website. Method 01. Centering an element .content { width:100px; margin:0... by P&T BROS | Nov 24, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
Create a better designed website using border radius css code. Border Radius Round #box { border-radius:10px; background:#ff3000; } Border Radius Circle #box { border-radius:50%; width:250px; height:250px; } ... by P&T BROS | Nov 23, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
Examples for box shadow effects (outset & inset) Box shadow effect – Outset #box { box-shadow:5px 5px 5px #333; background:#eee; padding:25px; border-radius:5px; } #box { box-shadow:0px 0px 30px #333; background:#eee;... by P&T BROS | Nov 22, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
You can create better designed website using text shadowing effect. We want to share how to apply shadow effect on text using CSS code. It will make your website design more fancy and better! P&T IT BROTHER #text { text-shadow:1px 1px 1px #333;... by P&T BROS | Nov 22, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
Media Query is a powerful tool that helps developing for various web browser screen size. Today, There is varied types of media devices that has a different screen resolution such as laptops, cellphone, and tablet. That’s why you need this code to make a perfect...