Archive

Posts Tagged ‘CSS’

Few very useful tools for Web Developers

Aug 6th, 2009

Few tools are very essential for for Web Developers. Firebug is now a platform for many new tools in Firefox to assist developers. You need Firebug installed to install and use those tools. Search on https://addons.mozilla.org for firebug and you will get lots of plugin, which are dependent on firebug.… (Continue)

Table’s Width Fixing Hack

Nov 26th, 2008

I wanted to increase the table size (width). The HTML template was being used by many reports. And my report was not coming into the default size of 100%.
100 percent was not the total screen size available to my report. Instead it was wrapped in a fixed width table.… (Continue)

Passing value from one to another considering PHP, HTML, JavaScript

May 24th, 2008

This post is a little beautified article from earlier passing variables and values.
Passing JavaScript variable’s value to php/How to use JavaScript Variable in php
Again, directly you cannot do this. But when you pass a value to a url like:
1. <a href=”phpPage.php?sub=mail Subject”>Call PHP page</a> then $_GET['sub'] auto… (Continue)

Save Your Web Page’s Visual Space

Jul 3rd, 2007

This is an example of how to save visual space of web page using show-hide div, p, etc. Click on Details and see the effect.On first click it will expand and on next click it will become hidden.
.hide {display:none;} .show {display:block;} .hover1 {cursor:pointer;color:blue;}
function toggleView (id) { div1 =… (Continue)

Write Correct Markup, Validate Your Markup (HTML, XHTML)

May 30th, 2007

Do you ever try checking your HTML code for error? If no then you are probably writing wrong HTML code. This will cause your HTML load slow on browser. Validate your HTML code according to your document type defined in <!DOCTYPE ..Markup Validation
These are free W3C Markup Validation… (Continue)

Learn CSS: An Introductory CSS Tutorial for beginners

Apr 29th, 2007

Here this is a CSS tutorial for beginners, who know some basic structure of HTML Page. Here you will easily learn why to use CSS, how to use CSS, CSS structures.
CSS stands for Cascading Style Sheets. Styles were added to HTML 4.0.
Why we use CSS in Web Page?Previously… (Continue)

Various Issues, Tips and Methods

Oct 1st, 2005

These tips are for those who have experience in PHP platform of at least 2-3 months. These tips will help you directly dive into some of the things that mostly overlook at learning time and latter create problems in writing good code and building confidence.
Create/maintain blocks of code
Use… (Continue)