WebKit iOS

by knevercode

HTML

<!doctype html>
<html>
  <body>
    <input type="text" value="Try selecting this text!" />
  </body>
</html>

CSS

::selection {
  background: transparent;
  color: transparent;
}

input,
textarea {
  width: 350px;
  height: 24px;

  font-size: 34px;
  padding: 10px;

  caret-color: transparent;
  background: transparent;

  outline: purple solid 1px;
  color: purple;
  border: none;
}