Home>
How to hide clear button of specific input item in HTML/CSS
::-ms-clear {
display: none;
}
I got the information that it can be hidden with, but I don't know how to integrate it into the source.
Current Source
<TD rowspan = "2">
<INPUT type = "text" name = "name1" maxlength = 11>
</TD>
input.type_t05 {
color: black;
text-align: right;
font-size: 10pt;
}
Can it be embedded in input.type_t05?
Need to define another?
What kind of source should I use?
Thanks for your consideration.
-
Answer # 1
Related articles
- html - button is not displayed with button tag
- html - include a toggle button in the processing of the list {{n}}, and turn it on/off by the processing of the toggles from li
- i want the button to proceed to the next in unity to appear when the game clear is displayed in the ui
- [html] checking the number of digits in the input form by maxlength does not work
- html - i want to get tweeted from the share button on twitter
- unity - bind left mouse button or tap in input system
- html - check if a specific character exists on the site by scraping
- c++ - pic button input delay
- html - about input to text box in vba
- html - i want to align the line heads of input tags
- html - about character input in ie with vba
- html - display of date saved in input data of form_with
- html - the text in the button does not come to the center
- reactjs - i want to implement an add button in the input field using redux toolkit
- html - simple input form of thymeleaf
- html - button click design
- html - i want to remove the specific child element from the padding applied to the parent element
- i want to use javascript for the input element of a specific page to automatically enter a value
- spring - how to make the input value of the radio button immutable
- html - i want to align the button marks in the center with wordpress
Related questions
- html : How to remove top padding on header
- html : Drop-down list in the title of which is the name of the current page
- html : why is there an error in the web interface
- javascript : Tic Tac Toe js
- html : Some classes work on break point (css)
- Moves out block content (HTML, CSS)
- When hovering over one block, did the position of other blocks change (javascript)?
- html : all elements are hidden along with the span
- javascript : How to place header on main block and not separately
- html : Video on the background of the block
Is this something like this?