What do you think guys
What do you think guys
history-computer.com SQL vs. CSS What’s the Difference? Which Is Better?
A closer look at the differences between SQL and CSS. These two programming languages are common, but how are they used?
You're viewing a single thread.
All Comments
30 comments
CREATE TABLE display ( id INT PRIMARY KEY, display_property TEXT ); INSERT INTO display (id, display_property) VALUES (1, 'block'), (2, 'inline-block'), (3, 'flex'); CREATE TABLE divs ( id INT PRIMARY KEY, inner_html TEXT, display INT REFERENCES display(id) ); INSERT INTO divs (id, inner_html , display) VALUES (1, 'div1', 1), (2, 'div2', 2), (3, 'div3', 3);
47 0 Reply.users { id: int !primary-key; name: text; } .users::insert { id: 1; name: "John doe"; } @query (max: 10) { .user { display: table; } .users id { display: none; } }
45 1 ReplyThanks, I hate it.
18 0 ReplyThey both feel so wrong, I love it.
15 0 ReplyI think I need to lie down.
8 0 Reply
6 0 Reply
30 comments
Scroll to top