Home > Article > Web Front-end > A simple question about css, if you put Div and Span on the same line? _html/css_WEB-ITnose
<table> <tr> <th style="width:180px;border:1px solid red"> <div>div</div> <span>span</span> </th> </tr> </table>
No way. . The div has already filled the top part, and there is definitely no solution without changing the styles of other elements.
Or add a div
outside span like this:
<table> <tr> <th style="width:180px;border:1px solid red"> <div>div</div> <div><span>span</span></div> </th> </tr> </table>
Does LZ have an answer? I can’t think of a way
<table> <tr> <th style="width:180px;border:1px solid red"> <div>div</div> <div style="position:relative;"><span style="position:absolute;top:-22px;left:0;">span</span></div> </th> </tr> </table>
span can only be positioned absolutely, left and top can be adjusted by yourself~~
f5d188ed2c074f8b944552db028f98a1
a34de1251f0d9fe1e645927f19a896e8
f08790ecf127edf8a9a088f607ffa48e
6c8624910a5be7e1fae035bb8801b606span54bdf357c58b8a65c66d7c19c8e4d114
dc6dce4a544fdca2df29d5ac0ea9906bdivd4e6ef3935d870d31c81823c096b9b03
01c3ce868d2b3d9bce8da5c1b7e41e5b
fd273fcf5bcad3dfdad3c41bd81ad3e5
>
a34de1251f0d9fe1e645927f19a896e8
f08790ecf127edf8a9a088f607ffa48e
01c3ce868d2b3d9bce8da5c1b7e41e5b
fd273fcf5bcad3dfdad3c41bd81ad3e5
;
<table> <tr> <th style="width:180px;border:1px solid red"> <div style="float:left"> div </div> <div> <span> span </span> </div> </th> </tr></table>Span can only be positioned absolutely. Left and top can be adjusted by yourself~~
Absolute positioning is separated from the parent element, which is not good.
f5d188ed2c074f8b944552db028f98a1
a34de1251f0d9fe1e645927f19a896e8
f08790ecf127edf8a9a088f607ffa48e
dc6dce4a544fdca2df29d5ac0ea9906bdiv16b28748ea4df4d9c2150843fecfba68
01c3ce868d2b3d9bce8da5c1b7e41e5b
fd273fcf5bcad3dfdad3c41bd81ad3e5
f16b1740fad44fb09bfe928bcc527e08
This is the real master!
f5d188ed2c074f8b944552db028f98a1
a34de1251f0d9fe1e645927f19a896e8
d7c496e2b56e9602d3477d3cad19d5b9span54bdf357c58b8a65c66d7c19c8e4d114
dc6dce4a544fdca2df29d5ac0ea9906bdiv16b28748ea4df4d9c2150843fecfba68
01c3ce868d2b3d9bce8da5c1b7e41e5b
fd273fcf5bcad3dfdad3c41bd81ad3e5
f16b1740fad44fb09bfe928bcc527e08
This is the real master!
This is the real master, keep this post for a day to be worshiped by self-righteous people like "wuzhengqing1" and "KK3K2005".