I have found solution.
In WordPress version 5.6 below css is included for code block.
.wp-block-code code {
white-space: pre-wrap;
overflow-wrap: break-word;
}
white-space: pre-wrap; this line was causing issue
So I have overridden that css (from pre-wrap to pre) in my theme editor to solve issue
i.e
.wp-block-code code {
white-space: pre;
}
Screenshots are attached.
Additional css in wp 5.6 for code block-1
Additional css in wp 5.6 for code block-2
Solution-1
Solution-2
Solution-3
Thanks
-
This reply was modified 3 years, 9 months ago by programtown.
-
This reply was modified 3 years, 9 months ago by programtown.