Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

404
Views
En reactjs, ¿cómo distribuyo los componentes horizontalmente en un div que lo abarca?

Así que soy nuevo en reaccionar y por mi vida no puedo entender cómo hacer algo como esto: cuadrícula de tic-tac-toe

Tengo problemas para crear un componente de fila que represente un div con tres componentes cuadrados diferentes, distribuidos horizontalmente en el div. Cuando compilo mi código, todos los cuadrados en una fila se fijan en el mismo lugar. ¿Cómo soluciono esto, por favor?

mi código actual:

Aplicación.css

 .Row { text-align: center; position: absolute; left: 35%; right: 50%; top: 25%; width: 25%; height: 25%; display: flex; } .Square { position: absolute; width: 70px; height: 70px; border-color: #99ccff; text-align: center; font-size: xx-large; font-family: 'Courier New', Courier, monospace; } /* .Row { } */

Cuadrado.js

 import React from 'react'; import ReactDOM from 'react-dom'; export function Square(props){ // Square is rendered by App return( <div > <button className='Square'> X </button> </div> ); }

Aplicación.js

 import logo from './logo.svg'; import './App.css'; import { Row } from './components/Row'; function App() { // App renders Row return ( <Row /> ); } export default App;

Fila.js

 import React from 'react'; import ReactDOM from 'react-dom'; import { Square } from './Square'; export function Row() { return( <div className='Row'> <Square /> <Square /> <Square /> </div> ) }
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

import "./styles.css"; export default function App() { return ( <div className={"row"}> <Square /> <Square /> <Square /> </div> ); } export function Square(props) { // Square is rendered by App return ( <div className={"column"}> <button className="Square"> X </button> <button className="Square"> X </button> <button className="Square"> X </button> </div> ); }

Archivo estilos.css

 .App { font-family: sans-serif; text-align: center; } .row { display: flex; flex-direction: row; justify-content: space-between; } .column { display: flex; flex-direction: column; justify-content: space-between; }

Lea este artículo para comprender mejor la flexión: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

about 4 years ago · Juan Pablo Isaza Report

0

Puede intentar eliminar la position: absolute en la clase Square :

 .Square { width: 70px; height: 70px; border-color: #99ccff; text-align: center; font-size: xx-large; font-family: 'Courier New', Courier, monospace; }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!