HighLight an part of text in input tag
by Serge
HTML
<input type="text" value="<?php echo $url;?>" size="40" id="selecturl"/><br/><br/>
<input type="text" value="URL" size="40" id="selecturl"/><br/><br/>
CSS
input[type=text]:focus {
background-color: lightblue;
box-shadow: 0 0 5px indigo;
border: 1px solid indigo;
}
input::selection { background:black; color: white;}
input::-moz-selection { background:black; color:white; }
input::-webkit-selection { background:black; color:white; }