Oldalak

Saturday, June 18, 2016

Atributes Selector with CSS






Atributes Selector with CSS

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Atributes Selector</title>

<style>

label[for]
{
    background:yellow;}
   
fieldset{
    width:300px;}

</style>

</head>

<body>

    <form>
        <fieldset>
            <legend> Sign in Form </legend>
           
            <label for="user"> Username </label><br />
            <label for="password"> Password </label><br /><br />
           
            <input type="submit" value="SEND" />
        </fieldset>
    </form>

</body>
</html>


 

No comments:

Post a Comment