Tags Style

Tag: Style

Cara Membuat Warna pada Address Bar dan Toolbar Chrome Android

GULANGGULING.COM | KODING - Wuuuiiih akhirnya nulis babagan koding lagi. Kali ini mau berbagi sekalian mencatat soal ilmu atau cara membuat browser Chrome berwarna jika...

Font-Size em vs px vs pt vs percent

So, What’s the Difference? It’s easy to understand the difference between font-size units when you see them in action. Generally, 1em = 12pt = 16px =...

Change Font-Size Editor Zend Studio

Many of the fonts and colors and used by eclipse components can be set using the General > Appearance > Colors and Fonts preference page.

Code To Change Hyperlink Underline Color

Here we can do to change hyperlink underline color <a href="change-underline-color.php" style="text-decoration: none; border-bottom: 1px solid #999999">change underline color</a>

TinyMCE produce P elements

This is way If you want to change new line in TinyMCE with <br/> character : For the display you can use a simple CSS...

Jquery Check All

Here we can do with jquery, check all checkbox with name parameters : sample code : function checkallitems(){ var arr=$("input']"); if($('#contestall').attr('checked')==true){ for(var i=0;i<arr.length;i++){ $(arr).attr('checked','checked'); } }else{ for(var i=0;i<arr.length;i++){ $(arr).attr('checked',false); } } } note : contest is the name of...

CSS Input type

Use this if you want set CSS for input type, button, submit or file : input { } input{ } input{ } Happy coding !!