user2387226
user2387226

Reputation:

CSS selector for ASP button text

I have an ASP button with text and I am wondering if there is a way to style just the text of the asp button in css? I want to style just the text with -webkit-mask-image.

<span class="submitSection">
    <input type="submit" name="ctl00$MainContent$LoginUser$LoginButton" value="Enter" id="MainContent_LoginUser_LoginButton" class="submitButton">
</span> 

I have tried:

.submitButton a
{

.submitButton Text
{

Is this even possible?

Upvotes: 0

Views: 230

Answers (1)

Dan Grahn
Dan Grahn

Reputation: 9424

By "style the text" I am assuming that you mean the text within the button.

jsFiddle

.submitSection input {
    color: green;
}

Upvotes: 2

Related Questions