css background untuk textarea

textarea adalah merupakan suatu tag pada HTML yang berfungsi sebagai tempat tulisan atau kode-kode HTML. Unruk membuat textarea ini menggunakan modus html seperti contoh dibawah ini


<textarea name="textarea" cols="50" rows="4"> tulisannya berada disini semua</textarea>

didalam textarea tersebut bisa di beri gambar atau background, dengan menambahkan css sebagai berikut


<style type="text/css">
textarea {
background-image: url(gambare.jpg);
height: 100px;
width: 150px;
}
</style>

selamat belajar css

Tags : , ,

If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.

Leave Comment