数学講師2886596 views
高校化学2924523 views
英語613685 views
小学社会310495 views
MathPython497416 views
高校倫理1440172 views
ヒストリア290629 views
中学数学623778 views
いろは3011036 views
世界の国564562 views
Help
Tools
NewsSpreadsheetCalendarBookkeepingMarkdown TablesLanguage Model NewsSlidesTier ListPen ToolIllustrationCrayonWatercolorPixel ArtASCII ArtPerspectiveEndless StairsGraphMind MapER DiagramFamily TreeMemeCurved TextImage EditorMosaicRetro FilterPencil SketchSwirl EffectLine ArtOCR/HighlighterMakeup EditorFaviconVideo TrimmerScrolling VideoVideo TitleColor PickerColor ExtractorBonfireFireworksCherry BlossomWater RippleWater SplashBreaking GlassGlass TextureFabric TextureWood GrainMarble TextureBrick Wall TextureMetal TextureWashi Paper TextureCardboard TextureCSS ButtonIcon MakerBar ChartGrouped Bar ChartStacked Bar ChartPie ChartLine ChartArea ChartStacked Area ChartScatter Plot3D Bar Chart3D Pie ChartBar Chart RaceBubble ChartPopulation PyramidPictogramEarningsCandlestick ChartInvestment RiskMortgage SimulatorCalculatorMatrix CalculatorFunction GraphPolynomial ExpansionVenn DiagramField VisualizerRubik's Cube Group TheoryTraveling SalesmanVoronoi and DelaunayFractalColumn ArithmeticDraw Math FiguresArithmetic AnimationArithmetic Word ProblemsCounting with Tree DiagramsCube NetsRolling DiceCross SectionsMotion PathMechanicsWavesElectromagnetic WavesCapacitorsLight and LensesThermodynamicsHow Semiconductors WorkMolecular StructuresAtomic OrbitalsElectrochemical CellsChemical EquilibriumCrystal LatticesBuffer pHOrganic Reaction MapPeriodic TableComplex IonsDNA Double HelixCell DivisionMembrane ChannelsNerve ImpulseMuscle ContractionHormones and HomeostasisRock ClassificationWeatherConstellationsSolar and Lunar Eclipses3D ModelingFloor PlanSeismic StructuresIntersection TurnMaglevCooking AnimationOrigamiLive Viewer CountGeoJSON MapRailway MapPopulation MapCrime MapLand Price MapSchool MapShrine and Castle MapHouse of Representatives MapWord MapSolitaireReversiHakoiri MusumeChessHamburgerRippleSlide Puzzle MakerNeon PinballNovel MakerJapanese Typing PracticePiano Score EditorMusic TheoryShogi StrategyPiano Rhythm Game

English

テキストエリアの横の幅(縦の高さ)をcssで制御する

テキストエリアのリサイズの制御は resize で指定する。

幅を変えられないようにする

縦の高さのみを変えられるようにするには

textarea {
resize: vertical;
}

とする。縦の高さの最大値(最小値)は

textarea {
resize: vertical;
max-height: 500px;
min-height: 100px;
}

と指定する。

高さを変えられないようにする

横の幅のみを変えられるようにするには

textarea {
resize: horizontal;
}

とする。横の幅の最大値(最小値)は

textarea {
resize: horizontal;
max-width: 500px;
min-width: 100px;
}

と指定する。

横と縦の両方でリサイズを禁止する

textarea {
resize: none;
}

none にするとテキストエリアの大きさはデフォルトの大きさで固定される。

テキストエリアのリサイズの制御は resize で指定する。縦の高さのみを変えられるようにするには resize: vertical とする。