最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to adjust the content style in the body of react-draft-wysiwyg - Stack Overflow

programmeradmin2浏览0评论

I'm new to react, I have gone through draftjs editor but when I try to use the code, the border is not getting displayed.

Here is a snapshot of the editor:

My Code:

export default class App extends Component {
  render() {
    return (
      <Container>
        <Modal trigger={<Button>Show Content</Button>}>
          <Modal.Content>
            <Editor />
            <Button>Send</Button>
          </Modal.Content>
        </Modal>
      </Container>
    );
  }
}

Here the whole code: ""

Tried giving border but the problem is when i write more words, it is ing down beyond the border. Can anyone help me in this query?

I'm new to react, I have gone through draftjs editor but when I try to use the code, the border is not getting displayed.

Here is a snapshot of the editor:

My Code:

export default class App extends Component {
  render() {
    return (
      <Container>
        <Modal trigger={<Button>Show Content</Button>}>
          <Modal.Content>
            <Editor />
            <Button>Send</Button>
          </Modal.Content>
        </Modal>
      </Container>
    );
  }
}

Here the whole code: "https://codesandbox.io/s/distracted-ritchie-s75re"

Tried giving border but the problem is when i write more words, it is ing down beyond the border. Can anyone help me in this query?

Share Improve this question edited Mar 27, 2020 at 9:44 keikai 15.2k10 gold badges55 silver badges72 bronze badges asked Mar 27, 2020 at 9:02 ArunyaArunya 2916 silver badges21 bronze badges 1
  • try div.rdw-editor-main{border: 1px solid #f2f2f2;} – SFernando Commented Mar 27, 2020 at 9:22
Add a ment  | 

2 Answers 2

Reset to default 7

First, you are using react-draft-wysiwyg

  • refer with its document

You can set the editor styles via the props of editorStyle

editorStyle: style object applied around the editor

import { Editor } from "react-draft-wysiwyg";
import "react-draft-wysiwyg/dist/react-draft-wysiwyg.css";
...
<Editor editorStyle={{ border: "1px solid" }} />

As you're using an imported editor you have to specify the className used properly. So, inspect the element at which you want to update properties and find the className of the DOM element. Sometimes, there is a chance that native css code might override external one.So, Try to specify manually as,

div.rdw-editor-main{
  border: 1px solid #C0C0C0 ;
}

Add this to your style.css and you can definitely see the border which works perfectly fine. You can also do this,

<Editor editorStyle={{ border: "1px solid #C0C0C0" }} />

Hope it helps!. Happy Coding!!

发布评论

评论列表(0)

  1. 暂无评论