I have a parent element and it has column-count: 2 and i want the last p element in this container to take up the entire width of the parent container. But the column-count: 2 forces the last p element to appear in the 2nd column.
See here: https://image.prntscr.com/image/0b84d54f6c894b4183dd3d33205a9a43.png
Is there such a thing as a clear: both for column-count like how it would be used in floats?
If you want to add styles to the last
element, you can use this selector
.columns-2 .p:nth-last-child(1){}