All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nasdanika.html.bootstrap.Container Maven / Gradle / Ivy

There is a newer version: 2024.10.0
Show newest version
package org.nasdanika.html.bootstrap;

import org.nasdanika.html.Tag;

/**
 * Bootstrap container.
 * @author Pavel Vlasov
 *
 */
public interface Container extends BootstrapElement {
	
	interface Row extends BootstrapElement {
		
		interface Col extends BootstrapElement, org.nasdanika.html.Container {
			
			Col width(Breakpoint breakpoint, Size width);
			
		}
		
		Col col(Object... content);
		
	}
	
	Row row();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy