CSS Property Value How to - border-bottom: 3px double #fff;








Question

We would like to know how to border-bottom: 3px double #fff;.

Answer


<!DOCTYPE html>
<html>
<head>
<title>input with double-white bottom border</title>
<style type='text/css'>
body {<!--  w w  w . ja v a2  s. co m-->
  background: #EEE;
}

input {
  background: #f99;
  border: 1px solid #CFC8BC;
  border-bottom: 3px double #fff;
  border-radius: 4px;
}
</style>
</head>
<body>
  <input type="text" id="inputName" name="name">
</body>
</html>

The code above is rendered as follows: