function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Charlie CoxCharlie Cox 

Making a CommandButton look like a CommandLink

For reasons that don't matter I am trying to make a button look like a link using css in visualforce. Currently I have:
<button class="tableButton">
               <apex:commandButton value="{!c.Name}" action="{!viewCrs}">
                          <apex:param value="{!c.Id}" assignTo="{!courseId}" name="courseId" />
               </apex:commandButton>
</button>

The tableButton css looks like:
.tableButton {
     background:none;
     border:none;
     padding:0;
     /*border is optional*/
     border-bottom:1px solid #444;
     cursor: pointer;
}

However this just underlines the existing button. I'd like the "button" to look something like: click here to go to desired page

Thanks
pconpcon
By doing the following, I get something close to what you want.  This should get you close enough to finish.  The big take aways are the styleClass and the !important

<style>
.myButton {
background: none !important;
text-decoration: underline !important;
border: none !important;
color: blue !important;
cursor: pointer !important;
}
</style>
<apex:form>
<apex:commandButton value="Foo" styleClass="myButton"></apex:commandButton>
</apex:form>