¿Cómo establecer el espacio entre Flexbox?

¿Cómo establecer el espacio entre Flexbox?

Configurar el espacio entre Flexbox elementos implica el uso de propiedades como justificar-contenido con valores como espacio entre o espacio alrededor , y brecha , para distribuir uniformemente el espacio entre los elementos a lo largo del eje principal, mejorando el espaciado y la alineación del diseño en un contenedor flexible.

Existen algunos enfoques siguientes:



Tabla de contenidos

1. Usando la propiedad justificar contenido.

El propiedad de justificar contenido en Caja flexible CSS alinea los elementos flexibles a lo largo del eje principal. Puede distribuir el espacio entre elementos con valores como inicio flexible, final flexible, centro, espacio entre, espacio alrededor y espacio uniforme, controlando la alineación y el espaciado dentro de un contenedor flexible.



Sintaxis:

  • El valor espacio entre líneas se utiliza para mostrar elementos flexibles con espacio entre líneas.
justify-content: space-between; 
  • El valor espacio alrededor se utiliza para mostrar elementos flexibles con espacio entre, antes y después de las líneas.
justify-content: space-around; 

Ejemplo: En este ejemplo, demostramos el uso de justify-content en CSS Flexbox para distribuir el espacio entre elementos. el espacio alrededor crea un espacio igual alrededor de los elementos, mientras que el espacio entre coloca un espacio igual entre los elementos.



HTML
      Espacio entre flexboxtitle> <style>.flex2 { mostrar: flexionar;  justificar contenido: espacio alrededor;  color de fondo: verde;  } .flex3 { mostrar: flexionar;  justificar contenido: espacio entre;  color de fondo: verde;  } .flex-items { color de fondo: #f4f4f4;  ancho: 100px;  altura: 50 píxeles;  margen: 10px;  alineación de texto: centro;  tamaño de fuente: 40px;  } h3 { alineación de texto: centro;  } .geeks { tamaño de fuente: 40px;  alineación de texto: centro;  color: #009900;  peso de fuente: negrita;  } estilo> cabeza> <body>  <div>technologycoder.infodiv> <h3>Espacio entre flexboxh3> <br>  <b>justificar-contenido: espacio alrededor b> <div>  <div>1div> <div>2div> <div>3div> div> <br>  <b>justificar-contenido: espacio-entre b> <div>  <div>1div> <div>2div> <div>3div> div> <br>cuerpo> html> </pre>  </code>  <p dir='ltr'>  <b>  <strong>Producción: </strong>  </b>  </p>  <p dir='ltr'> <img src='//technologycoder.info/img/css-misc/95/how-set-space-between-flexbox.webp' alt='Establecer espacio entre Flexbox'> </p> <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br />  <h2 id='2-using-the-gap-property-to-set-space'>  <b>  <strong>2 </strong>  </b>  <span>. Utilizando el </span>  <b>  <strong>propiedad de brecha </strong>  </b>  <span>para establecer el espacio </span> </h2> <p dir='ltr'> <span>El </span>  <span>propiedad de espacio en CSS </span>  <span>establece el espacio entre los elementos de Flexbox o Grid. Es una abreviatura de espacio entre filas y columnas, lo que facilita la gestión del espaciado de forma coherente sin márgenes ni relleno adicionales, lo que mejora el control del diseño y la legibilidad. </span> </p>  <p dir='ltr'>  <b>  <strong>Sintaxis: </strong>  </b>  </p> <br /> <script>  atOptions = {    'key' : '837e366d1f13ad46f5225f4bfb955214',    'format' : 'iframe',    'height' : 50,    'width' : 320,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/837e366d1f13ad46f5225f4bfb955214/invoke.js"></script><br />  <pre>gap: value; </pre> <p dir='ltr'>  <b>  <strong>Ejemplo: </strong>  </b>  <span>En este ejemplo, usamos la propiedad de espacio junto con la propiedad de caja flexible para agregar espacio entre los elementos individuales. </span> </p>HTML <code>  <pre>  <html>  <head>  <style>.flex-container { pantalla: flex;  espacio: 20px;  /* Establece el espacio deseado entre elementos flexibles */ } .flex-item { background-color: lightblue;  relleno: 10px;  } .geeks { tamaño de fuente: 40px;  color: #009900;  peso de fuente: negrita;  } estilo> cabeza> <body>  <div>technologycoder.infodiv> <h3>Usando la propiedad de espacioh3> <div>  <div>Elemento 1div> <div>Elemento 2div> <div>Elemento 3div> div> cuerpo> html> </pre>  </code>  <p dir='ltr'>  <b>  <strong>Producción: </strong>  </b>  </p>  <img src='//technologycoder.info/img/css-misc/95/how-set-space-between-flexbox-2.webp' alt=''>  <br>  <br>
                     </div>

                     <!-- Article Footer with Prominent Share Buttons -->
                     <div class="px-6 md:px-8 py-8 bg-slate-50 dark:bg-slate-900/50 border-t border-slate-200 dark:border-slate-700/50">
                          <div class="flex flex-col sm:flex-row items-center justify-between gap-6">
                              <h4 class="text-base font-bold text-slate-700 dark:text-slate-300 uppercase tracking-wide flex items-center gap-2">
                                 <i class="fa fa-share-alt text-tech-500"> </i>
                                Compartir                              </h4>
                             
                              <div class="flex flex-wrap justify-center gap-3">
                                 <!-- Twitter -->
                                 <a href="https://twitter.com/intent/tweet?text=¿Cómo establecer el espacio entre Flexbox?&url=https://www.technologycoder.info/es/how-set-space-between-flexbox" 
                                   target="_blank" rel="noopener noreferrer" 
                                   class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#1DA1F2]/10 text-[#1DA1F2] hover:bg-[#1DA1F2] hover:text-white transition-all duration-300 font-bold text-sm">
                                     <i class="fa fa-twitter text-lg"> </i>
                                     <span class="hidden sm:inline">Twitter </span>
                                 </a>

                                 <!-- Facebook -->
                                 <a href="https://www.facebook.com/sharer/sharer.php?u=https://www.technologycoder.info/es/how-set-space-between-flexbox" 
                                   target="_blank" rel="noopener noreferrer"
                                   class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#4267B2]/10 text-[#4267B2] hover:bg-[#4267B2] hover:text-white transition-all duration-300 font-bold text-sm">
                                     <i class="fa fa-facebook text-lg"> </i>
                                     <span class="hidden sm:inline">Facebook </span>
                                 </a>
                                
                                 <!-- LinkedIn -->
                                 <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://www.technologycoder.info/es/how-set-space-between-flexbox&title=¿Cómo establecer el espacio entre Flexbox?" 
                                   target="_blank" rel="noopener noreferrer"
                                   class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#0077b5]/10 text-[#0077b5] hover:bg-[#0077b5] hover:text-white transition-all duration-300 font-bold text-sm">
                                     <i class="fa fa-linkedin text-lg"> </i>
                                     <span class="hidden sm:inline">LinkedIn </span>
                                 </a>
                              </div>
                          </div>
                     </div>
                <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>

                <!-- Comments Placeholder / Random Articles -->
                <div class="mt-8 bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-xl p-6 md:p-8 shadow-sm">
                     <h3 class="text-xl font-bold text-slate-900 dark:text-white mb-6 uppercase tracking-wide border-b border-slate-200 dark:border-slate-700 pb-2">
                        Te Puede Gustar                     </h3>
                     <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                         <div class="group">
                              <a href="/es/types-databases" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3">
                                 <img loading="lazy" src="https://technologycoder.info/img/dbms-relational-model/63/types-databases.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Tipos de bases de datos" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                              </a>
                              <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors">
                                 <a href="/es/types-databases">Tipos de bases de datos </a>
                              </h4>
                         </div> <div class="group">
                              <a href="/es/encoding-decoding-base64-strings-python" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3">
                                 <img loading="lazy" src="https://technologycoder.info/img/picked/79/encoding-decoding-base64-strings-python.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Codificación y decodificación de cadenas Base64 en Python" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                              </a>
                              <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors">
                                 <a href="/es/encoding-decoding-base64-strings-python">Codificación y decodificación de cadenas Base64 en Python </a>
                              </h4>
                         </div>
                     </div>
                </div>
             </div>

             <!-- SECONDARY COLUMN (SIDEBAR) -->
             <!-- Aside Column -->
 <div class="lg:col-span-4 space-y-8">
	
	 <!-- Best Articles Widget -->
	 <div class="rounded-xl bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 p-6 shadow-sm">
		 <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2">
			 <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide flex items-center">
                 <span class="mr-2 h-2 w-2 rounded-full bg-tech-500"> </span>
                Artículos Más Populares             </h2>
		 </div>
		
		 <!-- Owl Carousel Preserved Container -->
		 <div id="owl-carousel-3" class="owl-carousel owl-theme center-owl-nav">
			 <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/remove-all-containers">
						 <img src="https://technologycoder.info/img/it-problems-solutions/92/remove-all-containers.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Eliminar todos los contenedores e imágenes en Docker" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/remove-all-containers" class="hover:text-tech-500 transition-colors line-clamp-3">Eliminar todos los contenedores e imágenes en Docker </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/mkdir-command-linux-unix-with-examples">
						 <img src="https://technologycoder.info/img/linux-directories/39/mkdir-command-linux-unix-with-examples.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Comando mkdir en Linux/Unix con ejemplos" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/mkdir-command-linux-unix-with-examples" class="hover:text-tech-500 transition-colors line-clamp-3">Comando mkdir en Linux/Unix con ejemplos </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/binomial-random-variables">
						 <img src="https://technologycoder.info/img/mathematical/72/binomial-random-variables.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Variables aleatorias binomiales" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/binomial-random-variables" class="hover:text-tech-500 transition-colors line-clamp-3">Variables aleatorias binomiales </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/mvc-framework-introduction">
						 <img src="https://technologycoder.info/img/geeks-premier-league-2022/53/mvc-framework-introduction.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Introducción al marco MVC" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/mvc-framework-introduction" class="hover:text-tech-500 transition-colors line-clamp-3">Introducción al marco MVC </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/sql-server-if-else">
						 <img src="https://technologycoder.info/img/sql-server-tutorials/49/sql-server-if-else.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Servidor SQL SI OTRA COSA" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/sql-server-if-else" class="hover:text-tech-500 transition-colors line-clamp-3">Servidor SQL SI OTRA COSA </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/surface-area-prism">
						 <img src="https://technologycoder.info/img/maths-formulas/42/surface-area-prism.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Área de superficie de un prisma" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/surface-area-prism" class="hover:text-tech-500 transition-colors line-clamp-3">Área de superficie de un prisma </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/slope-secant-line-formula">
						 <img src="https://technologycoder.info/img/maths-formulas/03/slope-secant-line-formula.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Fórmula de la pendiente de la recta secante" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/slope-secant-line-formula" class="hover:text-tech-500 transition-colors line-clamp-3">Fórmula de la pendiente de la recta secante </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/how-win-student-election-1311424">
						 <img src="https://technologycoder.info/img/blog/06/how-win-student-election.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Cómo ganar una elección estudiantil, por un ex presidente de la clase" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/how-win-student-election-1311424" class="hover:text-tech-500 transition-colors line-clamp-3">Cómo ganar una elección estudiantil, por un ex presidente de la clase </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/learn-data-structures">
						 <img src="https://technologycoder.info/img/dsa-tutorials/52/learn-data-structures.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Aprenda estructuras de datos y algoritmos | Tutorial de DSA" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/learn-data-structures" class="hover:text-tech-500 transition-colors line-clamp-3">Aprenda estructuras de datos y algoritmos | Tutorial de DSA </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/es/graph-its-representations">
						 <img src="https://technologycoder.info/img/graph-basics/78/graph-its-representations.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Grafo y sus representaciones." class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/es/graph-its-representations" class="hover:text-tech-500 transition-colors line-clamp-3">Grafo y sus representaciones. </a>
                     </h4>
				 </div>
			 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
			 <!-- /ARTICLE -->
		 </div>
		

         <!-- Categories -->
		 <div class="mt-8 mb-4 border-b border-slate-100 dark:border-slate-700 pb-2">
			 <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">Categoría </h2>
		 </div>
		 <div class="flex flex-wrap gap-2">
             <a href="/es/blog/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                Blog
             </a> <a href="/es/java-conversion/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                Conversión De Java
             </a> <a href="/es/maths/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                Matemáticas
             </a> <a href="/es/java-collections/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                Colecciones Java
             </a> <a href="/es/differences/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                Diferencias
             </a> <a href="/es/java-string/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                Cadena De Java
             </a>
         </div>

         <!-- Interesting Articles Widget -->
		 <div class="mt-8">
			 <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2">
				 <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">Artículos De Interés </h2>
			 </div>
			
			 <div id="owl-carousel-4" class="owl-carousel owl-theme">
				 <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://technologycoder.info/img/java-tutorial/03/java-arrays-fill.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Relleno de matrices Java" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/es/java-tutorial/">Tutorial De Java </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/es/java-arrays-fill">Relleno de matrices Java </a> </h4>
					 </div>
				 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://technologycoder.info/img/category/19/what-is-full-form-asl.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="¿Cuál es la forma completa de ASL?" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/es/category/">Categoría </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/es/what-is-full-form-asl">¿Cuál es la forma completa de ASL? </a> </h4>
					 </div>
				 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://technologycoder.info/img/java-conversion/65/java-convert-object-string.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Java convierte objeto en cadena" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/es/java-conversion/">Conversión De Java </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/es/java-convert-object-string">Java convierte objeto en cadena </a> </h4>
					 </div>
				 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://technologycoder.info/img/chemical-bonding/22/decomposition-reaction.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Reaccion de descomposicion" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/es/chemical-bonding/">Enlace Químico </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/es/decomposition-reaction">Reaccion de descomposicion </a> </h4>
					 </div>
				 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://technologycoder.info/img/picked/15/index-match-function-excel.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Función ÍNDICE y COINCIDIR en Excel" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/es/picked/">Escogido </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/es/index-match-function-excel">Función ÍNDICE y COINCIDIR en Excel </a> </h4>
					 </div>
				 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://technologycoder.info/img/blog/28/ksp-chemistry-complete-guide-solubility-constant.webp" onerror="this.onerror=null; this.src='https://technologycoder.info/template/assets/images/unnamed.webp'" alt="Química Ksp: Guía completa de la constante de solubilidad" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/es/blog/">Blog </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/es/ksp-chemistry-complete-guide-solubility-constant-131686">Química Ksp: Guía completa de la constante de solubilidad </a> </h4>
					 </div>
				 <br /> <script>  atOptions = {    'key' : '35ed5b8858ff0aff1196df37b8c1a1c0',    'format' : 'iframe',    'height' : 250,    'width' : 300,    'params' : {}  };</script><script src="https://www.highperformanceformat.com/35ed5b8858ff0aff1196df37b8c1a1c0/invoke.js"></script><br /> </article>
				 <!-- /ARTICLE -->
			 </div>
		 </div>
	 </div>
 </div>
 <!-- /Aside Column -->         </div>
        </div>
     </div>

 <footer class="site-footer">
         <div class="container">
             <span class="footer-links">
                Copyright ©2026 Todos Los Derechos Reservados | 
                 <a href="//www.technologycoder.info/bg/">technologycoder.info </a> | 
                 <a href="/disclaimer" rel="nofollow noopener noreferrer" target="_blank">Descargo De Responsabilidad </a> | 
                 <a href="/about-us" rel="nofollow noopener noreferrer" target="_blank">Acerca De Nosotros </a> | 
                 <a href="/privacy-policy" rel="nofollow noopener noreferrer" target="_blank">Política De Privacidad </a> 
             </span>
         </div>
     </footer>
 
     <script type="text/javascript" src="https://technologycoder.info/template/assets/plugins/jquery-1.11.3.min.js"> </script>
     <script type="text/javascript" src="https://technologycoder.info/template/assets/plugins/bootstrap/js/bootstrap.min.js"> </script>    
     <script type="text/javascript" src="https://technologycoder.info/template/assets/js/main.js"> </script>     
	 <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"> </script>
	 <script>
    !function(){"use strict";let t=document.createElement("button");t.id="toTopBtn",t.innerHTML="↑";let e=`
        #toTopBtn {
            position: fixed; bottom: 25px; right: 25px; z-index: 9999; opacity: 0; visibility: hidden; background-color: #0ea5e9; color: white; border: none; border-radius: 8px; width: 50px; height: 50px; font-size: 24px; cursor: pointer; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }
        #toTopBtn:hover { background-color: #0284c7; }
    `,i=document.createElement("style");i.type="text/css",i.innerText=e,document.head.appendChild(i),document.body.appendChild(t),window.addEventListener("scroll",()=>{let e=window.scrollY||document.documentElement.scrollTop;e>300?(t.style.opacity="1",t.style.visibility="visible"):(t.style.opacity="0",t.style.visibility="hidden")}),t.addEventListener("click",()=>{window.scrollTo({top:0,behavior:"smooth"})})}();
     </script>
 </body>
 </html>
<script defer src="https://static.cloudflareinsights.com/beacon.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516" integrity="sha512-8DS7rgIrAmghBFwoOTujcf6D9rXvH8xm8JQ1Ja01h9QX8EzXldiszufYa4IFfKdLUKTTrnSFXLDkUEOTrZQ8Qg==" data-cf-beacon='{"version":"2024.11.0","token":"bda8ba47e8824130836bdc0c111a784e","r":1,"server_timing":{"name":{"cfCacheStatus":true,"cfEdge":true,"cfExtPri":true,"cfL4":true,"cfOrigin":true,"cfSpeedBrain":true},"location_startswith":null}}' crossorigin="anonymous"></script>