How to remove the caret from an input element

user3596335

How can I remove the caret from a <input type="text"> element only using CSS and not JavaScript?

Rafa Romero

Of course you can do it just with CSS.

Add this code to your CSS file:

border: none;
color: transparent;
text-shadow: 0 0 0 gray;
text-align: center;

&:focus {
    outline: none;
}

Here you have the SOURCE and a DEMO

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to remove the caret from an input element

From Dev

How to remove doublequotes from input

From Java

How to remove the border highlight on an input text element

From Dev

how to remove an element from after()

From Dev

How to remove element from ArrayList?

From Dev

How to remove element from datatable

From Dev

How to remove an element from a <tr>

From Dev

How to remove element from datatable

From Dev

how to remove an element from after()

From Dev

how to remove .selectable from element

From Dev

How to remove element from XML

From Dev

Materialize.css remove styling from input element

From Dev

Remove element of arraylist from user input without using iteratior

From Dev

How to set the caret position when there is an IMG element?

From Dev

How to remove or disable input from form validation

From Dev

How to remove focus from input field in jQuery?

From Dev

How to remove XML version from php://input

From Dev

How to remove selected text from an input Text?

From Dev

How to remove a string from an input value?

From Dev

How to remove first element from the Linked List?

From Dev

GWT : How to remove element from it's outermost?

From Dev

How to remove element from ConfigSections in .NET 4.5

From Dev

How to remove the nth element from the end of an array

From Dev

How to remove duplicate element from context menu?

From Java

How to remove an element from an array in Swift

From Java

How to remove element from array in forEach loop?

From Java

How to remove an element from a list by index

From Dev

how to remove the element with defined value from the list?

From Dev

How to remove last element from URL with PHP?

Related Related

HotTag

Archive