how to create custom inner popup window
Sometimes few notices may need to show top of the content in the webpage. then, inner popup windows can be useful. these windows can not disturb other coding layouts. because, these windows have...
View Articleremove or hide scrollbars in html
Few browsers shows default scrollbars forexample IE. To hide default scrollbars in html, it is very simple. the following code can hide scrollbars. keep this code in head part of the html....
View Articleeasy way to make editable div in html
div’s can contains elements and content. sometimes it may need to edit div content, then it should able to editable. Actually It is very simple code. <div contenteditable="true" style="border:1px...
View Articleproblem when apply padding to float divs
It is common problem in html coding to most beginners. when you apply padding to floated div, it may goes bottom. Example <div style="width:1000px"> <div style="float:left;...
View Articlehow to align images in paragraph
Align images in paragraph with textwrap. To make this, image tag should be in div and div should have float with left or right value. It will work anywhere in this paragraph, which means top or bottom...
View ArticleHow to expand right column height equal to left column height
I read this kind of question many time in the web. This is common problem when write coding in div layout. Few designers may want to expand right column height equal to left column height. Because,...
View Articleproblem when apply background image to a link
when apply background image to a link, It may not show full image in anchor link even if it has width and height style to link. Because, a link default height is limited. To show full background images...
View Articleeasy way to make rounded corners to image with css
When apply rounded corners code to image, It does not show rounded corners to image. But It will work to div. There is a easy trick to make rounded corners to image with css. just use image as a...
View Articleeasy code to align div’s side by side
Many beginners confuse how to align divs side by side when write coding in Divs in the html page. It is possible to align divs side by side like table cells. Actually it is very easy using with float...
View Articlecommon css problem Wrapper div does not expend – solved
It is common problem when writing code in div. Many beginners face this problem often. Here is the simple solution. If Wrapper div does’t expending, add the overflow:hidden css style to wrapper and add...
View Article