python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Explanation of "hardcoded" font on a piece of text, and how to remove it via CSS etc
I'm unable to understand how a piece of text has some kind of hardcoded font in it, that cannot be removed even after pasting into an RTE, application of CSS etc. See 2 examples below copied from vari...

zehawk
Votes: 0
Answers: 1
Latest Answer
Finally figured the answer thanks to a chance visit to lingojam - apparently its unicode not font. Example: ๐๐ฅ๐ข๐ฐ๐ข ๐๐ฏ๐ข ๐๐ฉ๐ฉ ๐ฒ๐ซ๐ฆ๐ ๐ฌ๐ก๐ข ๐ ๐ฅ๐๐ฏ๐ฐ, ๐ก๐ฒ๐ฅ. ๐ฟ๐๐๐๐ ๐๐๐ ๐๐๐ ๐๐๐๏ฟฝ...
zehawk
element.focus() doesn't work on rerendered contentEditable div element
import React, { useEffect, useState } from "react";
import "./styles.css";
const RichText = () => {
const [value, setValue] = useState("");
useEffect(() => ...

Andrey Radkevich
Votes: 0
Answers: 2
ReactQuill loses focus
I'm using ReactQuill in my project. pretty newbie using react-quill. I'm using react and nextjs in my project.
so I imported react-quill dynamically for preventing server side rendering:-
const ReactQ...

Imtiaz Ahmed
Votes: 0
Answers: 1
RichTextBox having problems replacing Cambria Math font
In my WinForms program, I have a rtf text. It contains this char 'โ'. The problem is, that 'โ' always has the font Cambria Math which is not supported by another part of the program. So i want to repl...
HimmDawg
Votes: 0
Answers: 0