ahulji Posted April 5, 2010 Report Share Posted April 5, 2010 (edited) Sveiki,vai kāds varētu pateikt kā varēja piešķit input box`am viss cauri citu krāsu un tā lai nav border! <td width="60">Vārds:</td> <td><input type="text" name="name"></td> </tr> Kas šeit būtu japamaina,paldies! Edited April 5, 2010 by ahulji Quote Link to comment Share on other sites More sharing options...
Kemito Posted April 5, 2010 Report Share Posted April 5, 2010 <td width="60">Vārds:</td> <td><input type="text" name="name" id="name" style="background: #000; border: 1px solid #eaeaea;"></td> </tr> Ieteiktu mazliet vairāk palasīt CSS @ w3schools.com :) Quote Link to comment Share on other sites More sharing options...
kraistaps Posted April 5, 2010 Report Share Posted April 5, 2010 Ar css palīdzību. Atsevišķs CSS fails, darbosies uz visiem input laukiem. input{ border:none; background-color: red; font-weight:bold; utt... } Vai arī tur pat kodā, darbosies tieši tam inputam. <input style="border:none; background-color:red;" type="text" name="name"> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.