Showing posts with label CSS. Show all posts
Showing posts with label CSS. Show all posts

Thursday, March 1, 2012

How to disable textarea resizing with Css?

Today I had to make `something` so my textarea field could not be resized. There might be different reasons why a user should not resize a textarea(which is a default setting in most browsers).
So if you want your textarea to be fixed, no rezise just use this in your css style:

    
.your_div textarea {
    resize: none;
}

There you go :)
Regards

Thursday, January 19, 2012

Html web color codes and chart, how to get hexadecimal values

It happens very often when you need to get hexadecimal values for colors so you can set them as background color or color of a certain text in CSS style without opening Photoshop or other software. So I think that a useful link is this one http://html-color-codes.info/. I wrote this link because it was useful to me. It is not because of advertising reasons. :)