tags:

views:

46

answers:

1

I want to gave image size in css.

+1  A: 
width: 100px;
height: 100px;
Svisstack
img {width: 100px; height: 100px;} to be precise?
pixeltocode
@pixeltocode: for example; Yes. if you want apply to all images.
Svisstack
Best thing would be to add a specific class to any images that you want to do that to like .img_100wh {width:100px; height:100px;}
Vernon