Answer the question
In order to leave comments, you need to log in
Is there block code highlighting, but is there inline code highlighting?
Well, or is there an opposite tag <br>
?
Or with the help of what css when you can write so that everything goes on one line?
Answer the question
In order to leave comments, you need to log in
There is a display property that can turn a block element into an inline element and vice versa
p {
display: inline; // строчный
}
p {
display: block; // блочный
}
p {
display: inline-block; // блочно-строчный
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question