I was wondering if there's way to style the superscript tag without effecting the whole paragraph. so for example here what I'm trying to do is to remove the underline from the superscripts without removing it from the link title itself. I was able to change the size and color of the sup tag but text-decoration doesn't seem to be working unless I remove the underline from the whole link. So is there anyway to style the tag?
1
There are 1 answers
Related Questions in SUPERSCRIPT
- Superscripts in forest plots R
- Unicode superscript encoding rule
- How to add superscripts to each circle of a venn diagram using ggvenn?
- Change row names in kable (RMarkdown)
- Getting Superscripts in Plot Axis Labels Using Character String Columns From a Data Frame
- how can I use math expressions in ggplot2 facet labels
- Superscripted ggplot x-axis labels not aligning properly
- Annotate ggplot with superscripts and subscripts with commas
- Export Quill editor content with superscript and subscript to excel
- Prime factorization with superscript exponents java
- Is there a Unicode 'combiner' akin to a superscript style?
- Looking for a way in PowerPoint to search and replace all (R) normal text with (R) superscript text
- Superscript text in SSRS
- How to convert an r dataframe column of numbers in a column of superscript numbers
- Create currency input with superscript in flutter
Related Questions in SUP
- How to use asyncspinner kotlin
- How to format half size with <sup> tag?
- How to add a subscript symbol in Vue.js
- Failed to run an application into Simulator like iPhone-Linker command failed with Exit code 1
- Display 'rd' in superscript in html option tag
- Styling the <sup> tag
- BAPI gets called multiple times in Android SUP application Async Task
- how to get the synchronizationGroup names in SUP 2.2?
- Is there a Sybase unwired platform Equivalent?
- Issue with unregistering and registering to a different server
- Is calling super's constructor redundant in this case?
- input type button value not formatting HTML properly
- Persitent Error 580 Invalid Authentication Parameters with an Android App connecting to Sybase SUP
- Sending and Reading a value from a MBO operation in SUP 2.3 with Android
- How to check Relay Server existence in SAP Mobile Platform, and pairing server with Android App
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

A good place to start is to remove
text-decorationfrom theaand replace it withborder-bottom.Update:
Another option if you have control over the markup is to wrap any text you want to style differently in a
spanor another semantically appropriate element such asu.…or…