I have the following snippet:
<div>
<table className="hidden sm:block w-full">
...
but when I expand the screen, the table doesn't take up the full width as the internet is suggesting me.
With Co开发者_C百科de Above
Desired Result
What is the opposite of visible
? Everyone suggests block
, but that seems like an odd default to me.
It looks like
<table className="hidden sm:table w-full">
is the best approach here.
精彩评论