Category Archives: Css
CSS coding guidelines/conventions
While writing CSS code, everyone should be follow a standard or convention. It is not important to remember a convention what should be follow. Important is to follow any style constantly, actually it is a common sense though it is not common sense to everybody. I am just writing it to provide others with one…
Implementation of fly-out flash message in your application
Now a days usability is one of the major issues for web application. Many web applications with good functionality did not get enough popularity because lack of usability. Flash message is one of the most important things of any application which may improve usability of an application. Here, I have explain steps for implementing fly-out…
How to print a hidden block of an HTML page?
One of my previous blog I have written “How to prevent printing a block of an HTML page?” then some of my blog readers wanted to know how he/she can print a hidden block? That’s why I have written this one. Anyone can do it by using simple css which is described below: First, Have…
How to prevent print a block of an HTML page?
Sometimes you may need to prevent printing a block of an html page. You can do it easily. Create a CSS class by following way and add it to your header section: <style type=”text/css” media = “print”>.noprint{display: none;}</style> Note that the media of the css script will be print. Now simply add the css class…
Background color or image problem of an iFrame in IE
Few days ago I have faced background image problem for iFrame in IE and search in web for the solution but i did not get any help. Then I have tried to solve it and finally I have solved this by using following two attributes background: transparent; and background-color: transparent; Below is the source HTML…
Liquid design : Importance and Considerations
The term “liquid” implies that a Website should flow smoothly into whatever space it is given. If you use a high resolution monitor, this may mean that you need to re-size your browser a little, which most people in that situation do. If you have a low resolution monitor, you will still see the information,…