Viewing 1 replies (of 1 total)
  • Here’s the simplest solution:

    textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
      background-color: #7abecc;
      border: 1px solid #CCCCCC;
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
      transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
    }

    There are some other features that can be added if you investigate the :focus Selector

Viewing 1 replies (of 1 total)
  • The topic ‘Table background color’ is closed to new replies.