-

24 September 2012

PURE CSS TEXT BOX

VM | 3:01 am |


Pure Css Textbox
©Lord Html

Description-As you see above a pure Css text box example this css text box is made by me Aumkar Thakur.This text box is having hover effect which make this software good looking the main advantage of this text box is that it change it color from black to CornflowerBlue when you will mouse over it.And if you click on text box it changes it color to dark green.The border of the text box having  stitched effect and also having box shadow behind box.



Find out how to make Pure Css Text box-
Its all the about Css & Html.If you know basic of Css & Html the you can make this text box.You don't need to make code as I will provide you.You only need to copy and paste.



HTML 


<div class="postmsgg23" style="font-family: &quot;Courier New&quot;,Courier,monospace;">Yout Text Here</div>

Css



.postmsgg23
{
color: white;
background-color: black;
width: 500px;
margin: 5px 60px;
padding: 20px 20px 20px 20px;
border: 2px dotted lightgrey;
border-radius: 10px;
box-shadow: -1px -1px 12px 2px gainsboro;
transition: background-color .777s;
-webkit-transition: background-color .777s;
-moz-transition: background-color .777s;
-o-transition: background-color .777s;
-ms-transition: background-color .777s;
}

.postmsgg23:hover
{
background-color: CornflowerBlue ;

}
.postmsgg23:active
{
background-color: darkgreen ;
}


Paste The Html Section where you want to put Css text box in your Website and Paste the Css section in your website Css.

If you are using Blogger following steps-

  • Paste The Html Section where you want to put Css text box in your blog.
  • Now go to Blogger dashboard.
  • Now open template designer.
  • Now click on Advanced button.
  • Now you will find Add Css button click on that link.
  • Now Paste The Css section code there..
  • Now Save The Template.

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...

Subscribe Updates, Its FREE!