<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>full-width &#8211; MaxVergelli.com</title>
	<atom:link href="https://www.maxvergelli.com/tag/full-width/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.maxvergelli.com</link>
	<description>sourcecode repository</description>
	<lastBuildDate>Tue, 07 Apr 2020 15:28:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i2.wp.com/www.maxvergelli.com/wp-content/uploads/2020/04/wp-1586823685141.png?fit=32%2C32&#038;ssl=1</url>
	<title>full-width &#8211; MaxVergelli.com</title>
	<link>https://www.maxvergelli.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">34603511</site>	<item>
		<title>Bootstrap 4 &#8211; How to get button groups that span the full width of a parent</title>
		<link>https://www.maxvergelli.com/how-to-get-button-groups-that-span-the-full-width-of-a-parent-in-bootstrap-4/</link>
					<comments>https://www.maxvergelli.com/how-to-get-button-groups-that-span-the-full-width-of-a-parent-in-bootstrap-4/#respond</comments>
		
		<dc:creator><![CDATA[Max]]></dc:creator>
		<pubDate>Mon, 06 Apr 2020 16:08:22 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[button-group]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[full-width]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[webdesign]]></category>
		<guid isPermaLink="false">http://www.maxvergelli.com/?p=149</guid>

					<description><![CDATA[In Bootstrap 4, we can get a button group like the following that span the full width of a parent element (like with the &#8220;.btn-block&#8221; class, but applied to a group http://getbootstrap.com/css/#buttons-sizes ) The solution is just using &#60;div class=&#8221;btn-group &#8230; <a class="kt-excerpt-readmore" href="https://www.maxvergelli.com/how-to-get-button-groups-that-span-the-full-width-of-a-parent-in-bootstrap-4/" aria-label="Bootstrap 4 &#8211; How to get button groups that span the full width of a parent">Read More</a>]]></description>
										<content:encoded><![CDATA[<p>In Bootstrap 4, we can get a button group like the following</p>


<div class="wp-block-codemirror-blocks-code-block alignwide code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;align&quot;:&quot;wide&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;modeName&quot;:&quot;html&quot;}">&lt;div class=&quot;btn-group&quot; role=&quot;group&quot; aria-label=&quot;...&quot;&gt; 
  &lt;button type=&quot;button&quot; class=&quot;btn btn-default&quot;&gt;Left&lt;/button&gt; 
  &lt;button type=&quot;button&quot; class=&quot;btn btn-default&quot;&gt;Middle&lt;/button&gt; 
  &lt;button type=&quot;button&quot; class=&quot;btn btn-default&quot;&gt;Right&lt;/button&gt; 
&lt;/div&gt;</pre></div>



<p>that span the full width of a parent element (like with the &#8220;.btn-block&#8221; class, but applied to a group http://getbootstrap.com/css/#buttons-sizes )</p>



<p>The solution is just using &lt;div class=&#8221;btn-group d-flex&#8221; role=&#8221;group&#8221;&gt;&lt;/div&gt; as a wrapper around elements with .w-100</p>



<p>This is the correct markup:</p>



<div class="wp-block-codemirror-blocks-code-block alignwide code-block"><pre class="CodeMirror" data-setting="{&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:true,&quot;readOnly&quot;:true,&quot;align&quot;:&quot;wide&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;modeName&quot;:&quot;html&quot;}">&lt;div class=&quot;btn-group d-flex w-100&quot; role=&quot;group&quot; aria-label=&quot;...&quot;&gt; 
  &lt;button type=&quot;button&quot; class=&quot;btn btn-default w-100&quot;&gt;Left&lt;/button&gt; 
  &lt;button type=&quot;button&quot; class=&quot;btn btn-default w-100&quot;&gt;Middle&lt;/button&gt; 
  &lt;button type=&quot;button&quot; class=&quot;btn btn-default w-100&quot;&gt;Right&lt;/button&gt; 
&lt;/div&gt;</pre></div>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.maxvergelli.com/how-to-get-button-groups-that-span-the-full-width-of-a-parent-in-bootstrap-4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">149</post-id>	</item>
	</channel>
</rss>
