Aruthra Owner, Swift Industry Aug 14, 2013 616 61 Jul 18, 2014 #1 For example go to this website: You must be registered for see links When you select any text, it shows red color. Tell me the html code please?
For example go to this website: You must be registered for see links When you select any text, it shows red color. Tell me the html code please?
Weasel 👄 I'd intercept me Nov 25, 2011 4,135 2,461 Jul 18, 2014 #3 Code: ::selection { background: red; /* WebKit/Blink Browsers */ } ::-moz-selection { background: red; /* Gecko Browsers */ } Learn to google. Upvote 0 Downvote
Code: ::selection { background: red; /* WebKit/Blink Browsers */ } ::-moz-selection { background: red; /* Gecko Browsers */ } Learn to google.
Aruthra Owner, Swift Industry Aug 14, 2013 616 61 Jul 18, 2014 Thread starter #4 Leon said: You must be registered for see links Click to expand... DJMadDog said: Code: ::selection { background: red; /* WebKit/Blink Browsers */ } ::-moz-selection { background: red; /* Gecko Browsers */ } Learn to google. Click to expand... I Already Know That.... I want the html code Upvote 0 Downvote
Leon said: You must be registered for see links Click to expand... DJMadDog said: Code: ::selection { background: red; /* WebKit/Blink Browsers */ } ::-moz-selection { background: red; /* Gecko Browsers */ } Learn to google. Click to expand... I Already Know That.... I want the html code
Weasel 👄 I'd intercept me Nov 25, 2011 4,135 2,461 Jul 18, 2014 #5 There is none. Add this to the page and it applies it everywhere. Upvote 0 Downvote
Aruthra Owner, Swift Industry Aug 14, 2013 616 61 Jul 18, 2014 Thread starter #6 DJMadDog said: There is none. Add this to the page and it applies it everywhere. Click to expand... Doesn't work Upvote 0 Downvote
DJMadDog said: There is none. Add this to the page and it applies it everywhere. Click to expand... Doesn't work
RastaLulz fight teh power Staff member May 3, 2010 3,934 3,933 Jul 18, 2014 #7 Aruthra said: Doesn't work Click to expand... It works.. You must be registered for see links You have to include the CSS (file) somewhere in your HTML file. Upvote 0 Downvote
Aruthra said: Doesn't work Click to expand... It works.. You must be registered for see links You have to include the CSS (file) somewhere in your HTML file.
Aruthra Owner, Swift Industry Aug 14, 2013 616 61 Jul 18, 2014 Thread starter #8 RastaLulz said: It works.. You must be registered for see links You have to include the CSS (file) somewhere in your HTML file. Click to expand... What's the code to add the css file into my html file? Upvote 0 Downvote
RastaLulz said: It works.. You must be registered for see links You have to include the CSS (file) somewhere in your HTML file. Click to expand... What's the code to add the css file into my html file?
RastaLulz fight teh power Staff member May 3, 2010 3,934 3,933 Jul 18, 2014 #9 Aruthra said: What's the code to add the css file into my html file? Click to expand... HTML: <html> <head> <title>Highlight Text</title> <link href="path/to/custom.css" type="text/css" rel="stylesheet"> </head> <body> Highlight this text. </body> </html> Upvote 0 Downvote
Aruthra said: What's the code to add the css file into my html file? Click to expand... HTML: <html> <head> <title>Highlight Text</title> <link href="path/to/custom.css" type="text/css" rel="stylesheet"> </head> <body> Highlight this text. </body> </html>
Aruthra Owner, Swift Industry Aug 14, 2013 616 61 Jul 18, 2014 Thread starter #10 Thanks a lot everyone! Upvote 0 Downvote