Span vs. div
Styles can be applied to any HTML tagBut there are 2 tags used just for styles:•Div is a
block
tag that separates logicalsections of a page.
A div cannot go inside a paragraph, becausea div is a block or container object.
•Span is an
inline
tag that only appliesformatting.
Spans cannot include layout formatting like margins or floats.
Add a Comment