Tailwind CSSとレスポンシブデザイン
Tailwind CSSは、デフォルトでレスポンシブデザインを利用しています。これは、モバイルファーストのブレークポイントシステムを使用して実現されています。このシステムは、あらかじめ定義されたCSSクラスのセットを使用して、異なるビューポートサイズで異なるスタイルを適用することで機能します。これらのクラスは、スタイルシート内のscreen
ディレクティブと組み合わせて使用されます。
Tailwindのデフォルトのブレークポイントは次のとおりです。
sm
: 640pxmd
: 768pxlg
: 1024pxxl
: 1280px2xl
: 1536px
これらをクラスの接頭辞として追加することで、これらのブレークポイントでスタイルを適用できます。例えば次のようになります。
html
<div class="text-sm md:text-lg lg:text-xl">Responsive Text</div>
この例では、テキストのサイズはデフォルトでsm
になり、md
のブレークポイント(768px)でlg
に変更され、その後lgのブレークポイント(1024px)でxl
に変更されます。
もしブレークポイントをカスタマイズしたい場合は、tailwind.config.js
ファイルを変更することで行うことができます。
tailwind.config.js
module.exports = {
theme: {
screens: {
'tablet': '640px',
'laptop': '1024px',
'desktop': '1280px',
},
},
variants: {},
plugins: [],
}
この例では、ブレークポイントにカスタムの名前(tablet
, laptop
, desktop
)を定義しています。そして、これらをデフォルトのブレークポイントと同様にHTML内で使用することができます。
html
<div class="text-sm tablet:text-md laptop:text-lg desktop:text-xl">Responsive Text</div>
参考
AlloyDB
Amazon Cognito
Amazon EC2
Amazon ECS
Amazon QuickSight
Amazon RDS
Amazon Redshift
Amazon S3
API
Autonomous Vehicle
AWS
AWS API Gateway
AWS Chalice
AWS Control Tower
AWS IAM
AWS Lambda
AWS VPC
BERT
BigQuery
Causal Inference
ChatGPT
Chrome Extension
CircleCI
Classification
Cloud Functions
Cloud IAM
Cloud Run
Cloud Storage
Clustering
CSS
Data Engineering
Data Modeling
Database
dbt
Decision Tree
Deep Learning
Descriptive Statistics
Differential Equation
Dimensionality Reduction
Discrete Choice Model
Docker
Economics
FastAPI
Firebase
GIS
git
GitHub
GitHub Actions
Google
Google Cloud
Google Search Console
Hugging Face
Hypothesis Testing
Inferential Statistics
Interval Estimation
JavaScript
Jinja
Kedro
Kubernetes
LightGBM
Linux
LLM
Mac
Machine Learning
Macroeconomics
Marketing
Mathematical Model
Meltano
MLflow
MLOps
MySQL
NextJS
NLP
Nodejs
NoSQL
ONNX
OpenAI
Optimization Problem
Optuna
Pandas
Pinecone
PostGIS
PostgreSQL
Probability Distribution
Product
Project
Psychology
Python
PyTorch
QGIS
R
ReactJS
Regression
Rideshare
SEO
Singer
sklearn
Slack
Snowflake
Software Development
SQL
Statistical Model
Statistics
Streamlit
Tabular
Tailwind CSS
TensorFlow
Terraform
Transportation
TypeScript
Urban Planning
Vector Database
Vertex AI
VSCode
XGBoost