hstack-vstack-css icon indicating copy to clipboard operation
hstack-vstack-css copied to clipboard

Thanks! And a question.

Open g40 opened this issue 2 years ago • 0 comments

This is super stuff for HTML/CSS for C++ people like myself. Congratulations on making it so simple. Thank you.

Question: How does one nest these styles? For example, stack 3 rows of buttons, each of which is centered in the page? Thanks again for listening.

	<div class="flex vstack">
		<div class="flex hstack">
			<div>
				<button onclick="callit('callout1','data1')">Click callout1 </button>
			</div>
			<div>
				<button onclick="callit('callout2','data2')">Click callout2 </button>
			</div>
			<div>
				<button onclick="callit('callout3','data3')">Click callout3 </button>
			</div>
		</div>

g40 avatar Mar 22 '23 17:03 g40