Line break UI Text field

Hi I’m trying to set the text with string can’t get the line break to work. want it to look this one


but it looks like this all mess up

    the code that i am use to set the items description

    [SerializeField]
    private Text description;
    [SerializeField]
    private string text;

    public void OnMouseOver()
    {
        Debug.Log("isset");
        description.text = text;
    }

Hi,

you may find your answer here:

One short solution: use the character "
" - without the double quotes - in your text variable for a line break.

hi, I have tried this is what I get 93504-4.png