node_modules_mdndata_css_properties.json 260 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163
  1. {
  2. "--*": {
  3. "syntax": "<declaration-value>",
  4. "media": "all",
  5. "inherited": true,
  6. "animationType": "discrete",
  7. "percentages": "no",
  8. "groups": [
  9. "CSS Variables"
  10. ],
  11. "initial": "seeProse",
  12. "appliesto": "allElements",
  13. "computed": "asSpecifiedWithVarsSubstituted",
  14. "order": "perGrammar",
  15. "status": "experimental",
  16. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/--*"
  17. },
  18. "-ms-accelerator": {
  19. "syntax": "false | true",
  20. "media": "visual",
  21. "inherited": false,
  22. "animationType": "discrete",
  23. "percentages": "no",
  24. "groups": [
  25. "Microsoft Extensions"
  26. ],
  27. "initial": "false",
  28. "appliesto": "allElements",
  29. "computed": "asSpecified",
  30. "order": "uniqueOrder",
  31. "status": "nonstandard",
  32. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-accelerator"
  33. },
  34. "-ms-block-progression": {
  35. "syntax": "tb | rl | bt | lr",
  36. "media": "visual",
  37. "inherited": false,
  38. "animationType": "discrete",
  39. "percentages": "no",
  40. "groups": [
  41. "Microsoft Extensions"
  42. ],
  43. "initial": "tb",
  44. "appliesto": "allElements",
  45. "computed": "asSpecified",
  46. "order": "uniqueOrder",
  47. "status": "nonstandard",
  48. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-block-progression"
  49. },
  50. "-ms-content-zoom-chaining": {
  51. "syntax": "none | chained",
  52. "media": "interactive",
  53. "inherited": false,
  54. "animationType": "discrete",
  55. "percentages": "no",
  56. "groups": [
  57. "Microsoft Extensions"
  58. ],
  59. "initial": "none",
  60. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  61. "computed": "asSpecified",
  62. "order": "uniqueOrder",
  63. "status": "nonstandard",
  64. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-chaining"
  65. },
  66. "-ms-content-zooming": {
  67. "syntax": "none | zoom",
  68. "media": "interactive",
  69. "inherited": false,
  70. "animationType": "discrete",
  71. "percentages": "no",
  72. "groups": [
  73. "Microsoft Extensions"
  74. ],
  75. "initial": "zoomForTheTopLevelNoneForTheRest",
  76. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  77. "computed": "asSpecified",
  78. "order": "uniqueOrder",
  79. "status": "nonstandard",
  80. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zooming"
  81. },
  82. "-ms-content-zoom-limit": {
  83. "syntax": "<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>",
  84. "media": "interactive",
  85. "inherited": false,
  86. "animationType": "discrete",
  87. "percentages": [
  88. "-ms-content-zoom-limit-max",
  89. "-ms-content-zoom-limit-min"
  90. ],
  91. "groups": [
  92. "Microsoft Extensions"
  93. ],
  94. "initial": [
  95. "-ms-content-zoom-limit-max",
  96. "-ms-content-zoom-limit-min"
  97. ],
  98. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  99. "computed": [
  100. "-ms-content-zoom-limit-max",
  101. "-ms-content-zoom-limit-min"
  102. ],
  103. "order": "uniqueOrder",
  104. "status": "nonstandard",
  105. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit"
  106. },
  107. "-ms-content-zoom-limit-max": {
  108. "syntax": "<percentage>",
  109. "media": "interactive",
  110. "inherited": false,
  111. "animationType": "discrete",
  112. "percentages": "maxZoomFactor",
  113. "groups": [
  114. "Microsoft Extensions"
  115. ],
  116. "initial": "400%",
  117. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  118. "computed": "asSpecified",
  119. "order": "uniqueOrder",
  120. "status": "nonstandard",
  121. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-max"
  122. },
  123. "-ms-content-zoom-limit-min": {
  124. "syntax": "<percentage>",
  125. "media": "interactive",
  126. "inherited": false,
  127. "animationType": "discrete",
  128. "percentages": "minZoomFactor",
  129. "groups": [
  130. "Microsoft Extensions"
  131. ],
  132. "initial": "100%",
  133. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  134. "computed": "asSpecified",
  135. "order": "uniqueOrder",
  136. "status": "nonstandard",
  137. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-limit-min"
  138. },
  139. "-ms-content-zoom-snap": {
  140. "syntax": "<'-ms-content-zoom-snap-type'> || <'-ms-content-zoom-snap-points'>",
  141. "media": "interactive",
  142. "inherited": false,
  143. "animationType": "discrete",
  144. "percentages": "no",
  145. "groups": [
  146. "Microsoft Extensions"
  147. ],
  148. "initial": [
  149. "-ms-content-zoom-snap-type",
  150. "-ms-content-zoom-snap-points"
  151. ],
  152. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  153. "computed": [
  154. "-ms-content-zoom-snap-type",
  155. "-ms-content-zoom-snap-points"
  156. ],
  157. "order": "uniqueOrder",
  158. "status": "nonstandard",
  159. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap"
  160. },
  161. "-ms-content-zoom-snap-points": {
  162. "syntax": "snapInterval( <percentage>, <percentage> ) | snapList( <percentage># )",
  163. "media": "interactive",
  164. "inherited": false,
  165. "animationType": "discrete",
  166. "percentages": "no",
  167. "groups": [
  168. "Microsoft Extensions"
  169. ],
  170. "initial": "snapInterval(0%, 100%)",
  171. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  172. "computed": "asSpecified",
  173. "order": "uniqueOrder",
  174. "status": "nonstandard",
  175. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-points"
  176. },
  177. "-ms-content-zoom-snap-type": {
  178. "syntax": "none | proximity | mandatory",
  179. "media": "interactive",
  180. "inherited": false,
  181. "animationType": "discrete",
  182. "percentages": "no",
  183. "groups": [
  184. "Microsoft Extensions"
  185. ],
  186. "initial": "none",
  187. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  188. "computed": "asSpecified",
  189. "order": "uniqueOrder",
  190. "status": "nonstandard",
  191. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-content-zoom-snap-type"
  192. },
  193. "-ms-filter": {
  194. "syntax": "<string>",
  195. "media": "visual",
  196. "inherited": false,
  197. "animationType": "discrete",
  198. "percentages": "no",
  199. "groups": [
  200. "Microsoft Extensions"
  201. ],
  202. "initial": "\"\"",
  203. "appliesto": "allElements",
  204. "computed": "asSpecified",
  205. "order": "uniqueOrder",
  206. "status": "nonstandard",
  207. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-filter"
  208. },
  209. "-ms-flow-from": {
  210. "syntax": "[ none | <custom-ident> ]#",
  211. "media": "visual",
  212. "inherited": false,
  213. "animationType": "discrete",
  214. "percentages": "no",
  215. "groups": [
  216. "Microsoft Extensions"
  217. ],
  218. "initial": "none",
  219. "appliesto": "nonReplacedElements",
  220. "computed": "asSpecified",
  221. "order": "uniqueOrder",
  222. "status": "nonstandard",
  223. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-flow-from"
  224. },
  225. "-ms-flow-into": {
  226. "syntax": "[ none | <custom-ident> ]#",
  227. "media": "visual",
  228. "inherited": false,
  229. "animationType": "discrete",
  230. "percentages": "no",
  231. "groups": [
  232. "Microsoft Extensions"
  233. ],
  234. "initial": "none",
  235. "appliesto": "iframeElements",
  236. "computed": "asSpecified",
  237. "order": "uniqueOrder",
  238. "status": "nonstandard",
  239. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-flow-into"
  240. },
  241. "-ms-grid-columns": {
  242. "syntax": "none | <track-list> | <auto-track-list>",
  243. "media": "visual",
  244. "inherited": false,
  245. "animationType": "simpleListOfLpcDifferenceLpc",
  246. "percentages": "referToDimensionOfContentArea",
  247. "groups": [
  248. "CSS Grid Layout"
  249. ],
  250. "initial": "none",
  251. "appliesto": "gridContainers",
  252. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  253. "order": "uniqueOrder",
  254. "status": "nonstandard",
  255. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-grid-columns"
  256. },
  257. "-ms-grid-rows": {
  258. "syntax": "none | <track-list> | <auto-track-list>",
  259. "media": "visual",
  260. "inherited": false,
  261. "animationType": "simpleListOfLpcDifferenceLpc",
  262. "percentages": "referToDimensionOfContentArea",
  263. "groups": [
  264. "CSS Grid Layout"
  265. ],
  266. "initial": "none",
  267. "appliesto": "gridContainers",
  268. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  269. "order": "uniqueOrder",
  270. "status": "nonstandard",
  271. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-grid-rows"
  272. },
  273. "-ms-high-contrast-adjust": {
  274. "syntax": "auto | none",
  275. "media": "visual",
  276. "inherited": true,
  277. "animationType": "discrete",
  278. "percentages": "no",
  279. "groups": [
  280. "Microsoft Extensions"
  281. ],
  282. "initial": "auto",
  283. "appliesto": "allElements",
  284. "computed": "asSpecified",
  285. "order": "uniqueOrder",
  286. "status": "nonstandard",
  287. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-high-contrast-adjust"
  288. },
  289. "-ms-hyphenate-limit-chars": {
  290. "syntax": "auto | <integer>{1,3}",
  291. "media": "visual",
  292. "inherited": true,
  293. "animationType": "discrete",
  294. "percentages": "no",
  295. "groups": [
  296. "Microsoft Extensions"
  297. ],
  298. "initial": "auto",
  299. "appliesto": "allElements",
  300. "computed": "asSpecified",
  301. "order": "uniqueOrder",
  302. "status": "nonstandard",
  303. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-chars"
  304. },
  305. "-ms-hyphenate-limit-lines": {
  306. "syntax": "no-limit | <integer>",
  307. "media": "visual",
  308. "inherited": true,
  309. "animationType": "discrete",
  310. "percentages": "no",
  311. "groups": [
  312. "Microsoft Extensions"
  313. ],
  314. "initial": "no-limit",
  315. "appliesto": "blockContainerElements",
  316. "computed": "asSpecified",
  317. "order": "uniqueOrder",
  318. "status": "nonstandard",
  319. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-lines"
  320. },
  321. "-ms-hyphenate-limit-zone": {
  322. "syntax": "<percentage> | <length>",
  323. "media": "visual",
  324. "inherited": true,
  325. "animationType": "discrete",
  326. "percentages": "referToLineBoxWidth",
  327. "groups": [
  328. "Microsoft Extensions"
  329. ],
  330. "initial": "0",
  331. "appliesto": "blockContainerElements",
  332. "computed": "asSpecified",
  333. "order": "uniqueOrder",
  334. "status": "nonstandard",
  335. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-hyphenate-limit-zone"
  336. },
  337. "-ms-ime-align": {
  338. "syntax": "auto | after",
  339. "media": "visual",
  340. "inherited": false,
  341. "animationType": "discrete",
  342. "percentages": "no",
  343. "groups": [
  344. "Microsoft Extensions"
  345. ],
  346. "initial": "auto",
  347. "appliesto": "allElements",
  348. "computed": "asSpecified",
  349. "order": "uniqueOrder",
  350. "status": "nonstandard",
  351. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-ime-align"
  352. },
  353. "-ms-overflow-style": {
  354. "syntax": "auto | none | scrollbar | -ms-autohiding-scrollbar",
  355. "media": "interactive",
  356. "inherited": true,
  357. "animationType": "discrete",
  358. "percentages": "no",
  359. "groups": [
  360. "Microsoft Extensions"
  361. ],
  362. "initial": "auto",
  363. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  364. "computed": "asSpecified",
  365. "order": "uniqueOrder",
  366. "status": "nonstandard",
  367. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-overflow-style"
  368. },
  369. "-ms-scrollbar-3dlight-color": {
  370. "syntax": "<color>",
  371. "media": "visual",
  372. "inherited": true,
  373. "animationType": "discrete",
  374. "percentages": "no",
  375. "groups": [
  376. "Microsoft Extensions"
  377. ],
  378. "initial": "dependsOnUserAgent",
  379. "appliesto": "allElements",
  380. "computed": "asSpecified",
  381. "order": "uniqueOrder",
  382. "status": "nonstandard",
  383. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-3dlight-color"
  384. },
  385. "-ms-scrollbar-arrow-color": {
  386. "syntax": "<color>",
  387. "media": "visual",
  388. "inherited": true,
  389. "animationType": "discrete",
  390. "percentages": "no",
  391. "groups": [
  392. "Microsoft Extensions"
  393. ],
  394. "initial": "ButtonText",
  395. "appliesto": "allElements",
  396. "computed": "asSpecified",
  397. "order": "uniqueOrder",
  398. "status": "nonstandard",
  399. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-arrow-color"
  400. },
  401. "-ms-scrollbar-base-color": {
  402. "syntax": "<color>",
  403. "media": "visual",
  404. "inherited": true,
  405. "animationType": "discrete",
  406. "percentages": "no",
  407. "groups": [
  408. "Microsoft Extensions"
  409. ],
  410. "initial": "dependsOnUserAgent",
  411. "appliesto": "allElements",
  412. "computed": "asSpecified",
  413. "order": "uniqueOrder",
  414. "status": "nonstandard",
  415. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-base-color"
  416. },
  417. "-ms-scrollbar-darkshadow-color": {
  418. "syntax": "<color>",
  419. "media": "visual",
  420. "inherited": true,
  421. "animationType": "discrete",
  422. "percentages": "no",
  423. "groups": [
  424. "Microsoft Extensions"
  425. ],
  426. "initial": "ThreeDDarkShadow",
  427. "appliesto": "allElements",
  428. "computed": "asSpecified",
  429. "order": "uniqueOrder",
  430. "status": "nonstandard",
  431. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-darkshadow-color"
  432. },
  433. "-ms-scrollbar-face-color": {
  434. "syntax": "<color>",
  435. "media": "visual",
  436. "inherited": true,
  437. "animationType": "discrete",
  438. "percentages": "no",
  439. "groups": [
  440. "Microsoft Extensions"
  441. ],
  442. "initial": "ThreeDFace",
  443. "appliesto": "allElements",
  444. "computed": "asSpecified",
  445. "order": "uniqueOrder",
  446. "status": "nonstandard",
  447. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-face-color"
  448. },
  449. "-ms-scrollbar-highlight-color": {
  450. "syntax": "<color>",
  451. "media": "visual",
  452. "inherited": true,
  453. "animationType": "discrete",
  454. "percentages": "no",
  455. "groups": [
  456. "Microsoft Extensions"
  457. ],
  458. "initial": "ThreeDHighlight",
  459. "appliesto": "allElements",
  460. "computed": "asSpecified",
  461. "order": "uniqueOrder",
  462. "status": "nonstandard",
  463. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-highlight-color"
  464. },
  465. "-ms-scrollbar-shadow-color": {
  466. "syntax": "<color>",
  467. "media": "visual",
  468. "inherited": true,
  469. "animationType": "discrete",
  470. "percentages": "no",
  471. "groups": [
  472. "Microsoft Extensions"
  473. ],
  474. "initial": "ThreeDDarkShadow",
  475. "appliesto": "allElements",
  476. "computed": "asSpecified",
  477. "order": "uniqueOrder",
  478. "status": "nonstandard",
  479. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-shadow-color"
  480. },
  481. "-ms-scrollbar-track-color": {
  482. "syntax": "<color>",
  483. "media": "visual",
  484. "inherited": true,
  485. "animationType": "discrete",
  486. "percentages": "no",
  487. "groups": [
  488. "Microsoft Extensions"
  489. ],
  490. "initial": "Scrollbar",
  491. "appliesto": "allElements",
  492. "computed": "asSpecified",
  493. "order": "uniqueOrder",
  494. "status": "nonstandard",
  495. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scrollbar-track-color"
  496. },
  497. "-ms-scroll-chaining": {
  498. "syntax": "chained | none",
  499. "media": "interactive",
  500. "inherited": false,
  501. "animationType": "discrete",
  502. "percentages": "no",
  503. "groups": [
  504. "Microsoft Extensions"
  505. ],
  506. "initial": "chained",
  507. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  508. "computed": "asSpecified",
  509. "order": "uniqueOrder",
  510. "status": "nonstandard",
  511. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-chaining"
  512. },
  513. "-ms-scroll-limit": {
  514. "syntax": "<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>",
  515. "media": "interactive",
  516. "inherited": false,
  517. "animationType": "discrete",
  518. "percentages": "no",
  519. "groups": [
  520. "Microsoft Extensions"
  521. ],
  522. "initial": [
  523. "-ms-scroll-limit-x-min",
  524. "-ms-scroll-limit-y-min",
  525. "-ms-scroll-limit-x-max",
  526. "-ms-scroll-limit-y-max"
  527. ],
  528. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  529. "computed": [
  530. "-ms-scroll-limit-x-min",
  531. "-ms-scroll-limit-y-min",
  532. "-ms-scroll-limit-x-max",
  533. "-ms-scroll-limit-y-max"
  534. ],
  535. "order": "uniqueOrder",
  536. "status": "nonstandard",
  537. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit"
  538. },
  539. "-ms-scroll-limit-x-max": {
  540. "syntax": "auto | <length>",
  541. "media": "interactive",
  542. "inherited": false,
  543. "animationType": "discrete",
  544. "percentages": "no",
  545. "groups": [
  546. "Microsoft Extensions"
  547. ],
  548. "initial": "auto",
  549. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  550. "computed": "asSpecified",
  551. "order": "uniqueOrder",
  552. "status": "nonstandard",
  553. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-max"
  554. },
  555. "-ms-scroll-limit-x-min": {
  556. "syntax": "<length>",
  557. "media": "interactive",
  558. "inherited": false,
  559. "animationType": "discrete",
  560. "percentages": "no",
  561. "groups": [
  562. "Microsoft Extensions"
  563. ],
  564. "initial": "0",
  565. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  566. "computed": "asSpecified",
  567. "order": "uniqueOrder",
  568. "status": "nonstandard",
  569. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-x-min"
  570. },
  571. "-ms-scroll-limit-y-max": {
  572. "syntax": "auto | <length>",
  573. "media": "interactive",
  574. "inherited": false,
  575. "animationType": "discrete",
  576. "percentages": "no",
  577. "groups": [
  578. "Microsoft Extensions"
  579. ],
  580. "initial": "auto",
  581. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  582. "computed": "asSpecified",
  583. "order": "uniqueOrder",
  584. "status": "nonstandard",
  585. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-max"
  586. },
  587. "-ms-scroll-limit-y-min": {
  588. "syntax": "<length>",
  589. "media": "interactive",
  590. "inherited": false,
  591. "animationType": "discrete",
  592. "percentages": "no",
  593. "groups": [
  594. "Microsoft Extensions"
  595. ],
  596. "initial": "0",
  597. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  598. "computed": "asSpecified",
  599. "order": "uniqueOrder",
  600. "status": "nonstandard",
  601. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-limit-y-min"
  602. },
  603. "-ms-scroll-rails": {
  604. "syntax": "none | railed",
  605. "media": "interactive",
  606. "inherited": false,
  607. "animationType": "discrete",
  608. "percentages": "no",
  609. "groups": [
  610. "Microsoft Extensions"
  611. ],
  612. "initial": "railed",
  613. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  614. "computed": "asSpecified",
  615. "order": "uniqueOrder",
  616. "status": "nonstandard",
  617. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-rails"
  618. },
  619. "-ms-scroll-snap-points-x": {
  620. "syntax": "snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",
  621. "media": "interactive",
  622. "inherited": false,
  623. "animationType": "discrete",
  624. "percentages": "no",
  625. "groups": [
  626. "Microsoft Extensions"
  627. ],
  628. "initial": "snapInterval(0px, 100%)",
  629. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  630. "computed": "asSpecified",
  631. "order": "uniqueOrder",
  632. "status": "nonstandard",
  633. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-x"
  634. },
  635. "-ms-scroll-snap-points-y": {
  636. "syntax": "snapInterval( <length-percentage>, <length-percentage> ) | snapList( <length-percentage># )",
  637. "media": "interactive",
  638. "inherited": false,
  639. "animationType": "discrete",
  640. "percentages": "no",
  641. "groups": [
  642. "Microsoft Extensions"
  643. ],
  644. "initial": "snapInterval(0px, 100%)",
  645. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  646. "computed": "asSpecified",
  647. "order": "uniqueOrder",
  648. "status": "nonstandard",
  649. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-points-y"
  650. },
  651. "-ms-scroll-snap-type": {
  652. "syntax": "none | proximity | mandatory",
  653. "media": "interactive",
  654. "inherited": false,
  655. "animationType": "discrete",
  656. "percentages": "no",
  657. "groups": [
  658. "Microsoft Extensions"
  659. ],
  660. "initial": "none",
  661. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  662. "computed": "asSpecified",
  663. "order": "uniqueOrder",
  664. "status": "nonstandard",
  665. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-type"
  666. },
  667. "-ms-scroll-snap-x": {
  668. "syntax": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>",
  669. "media": "interactive",
  670. "inherited": false,
  671. "animationType": "discrete",
  672. "percentages": "no",
  673. "groups": [
  674. "Microsoft Extensions"
  675. ],
  676. "initial": [
  677. "-ms-scroll-snap-type",
  678. "-ms-scroll-snap-points-x"
  679. ],
  680. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  681. "computed": [
  682. "-ms-scroll-snap-type",
  683. "-ms-scroll-snap-points-x"
  684. ],
  685. "order": "uniqueOrder",
  686. "status": "nonstandard",
  687. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-x"
  688. },
  689. "-ms-scroll-snap-y": {
  690. "syntax": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>",
  691. "media": "interactive",
  692. "inherited": false,
  693. "animationType": "discrete",
  694. "percentages": "no",
  695. "groups": [
  696. "Microsoft Extensions"
  697. ],
  698. "initial": [
  699. "-ms-scroll-snap-type",
  700. "-ms-scroll-snap-points-y"
  701. ],
  702. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  703. "computed": [
  704. "-ms-scroll-snap-type",
  705. "-ms-scroll-snap-points-y"
  706. ],
  707. "order": "uniqueOrder",
  708. "status": "nonstandard",
  709. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-snap-y"
  710. },
  711. "-ms-scroll-translation": {
  712. "syntax": "none | vertical-to-horizontal",
  713. "media": "interactive",
  714. "inherited": true,
  715. "animationType": "discrete",
  716. "percentages": "no",
  717. "groups": [
  718. "Microsoft Extensions"
  719. ],
  720. "initial": "none",
  721. "appliesto": "allElements",
  722. "computed": "asSpecified",
  723. "order": "uniqueOrder",
  724. "status": "nonstandard",
  725. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-scroll-translation"
  726. },
  727. "-ms-text-autospace": {
  728. "syntax": "none | ideograph-alpha | ideograph-numeric | ideograph-parenthesis | ideograph-space",
  729. "media": "visual",
  730. "inherited": false,
  731. "animationType": "discrete",
  732. "percentages": "no",
  733. "groups": [
  734. "Microsoft Extensions"
  735. ],
  736. "initial": "none",
  737. "appliesto": "allElements",
  738. "computed": "asSpecified",
  739. "order": "uniqueOrder",
  740. "status": "nonstandard",
  741. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-text-autospace"
  742. },
  743. "-ms-touch-select": {
  744. "syntax": "grippers | none",
  745. "media": "interactive",
  746. "inherited": true,
  747. "animationType": "discrete",
  748. "percentages": "no",
  749. "groups": [
  750. "Microsoft Extensions"
  751. ],
  752. "initial": "grippers",
  753. "appliesto": "allElements",
  754. "computed": "asSpecified",
  755. "order": "uniqueOrder",
  756. "status": "nonstandard",
  757. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-touch-select"
  758. },
  759. "-ms-user-select": {
  760. "syntax": "none | element | text",
  761. "media": "interactive",
  762. "inherited": false,
  763. "animationType": "discrete",
  764. "percentages": "no",
  765. "groups": [
  766. "Microsoft Extensions"
  767. ],
  768. "initial": "text",
  769. "appliesto": "nonReplacedElements",
  770. "computed": "asSpecified",
  771. "order": "uniqueOrder",
  772. "status": "nonstandard",
  773. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-user-select"
  774. },
  775. "-ms-wrap-flow": {
  776. "syntax": "auto | both | start | end | maximum | clear",
  777. "media": "visual",
  778. "inherited": false,
  779. "animationType": "discrete",
  780. "percentages": "no",
  781. "groups": [
  782. "Microsoft Extensions"
  783. ],
  784. "initial": "auto",
  785. "appliesto": "blockLevelElements",
  786. "computed": "asSpecified",
  787. "order": "uniqueOrder",
  788. "status": "nonstandard",
  789. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-flow"
  790. },
  791. "-ms-wrap-margin": {
  792. "syntax": "<length>",
  793. "media": "visual",
  794. "inherited": false,
  795. "animationType": "discrete",
  796. "percentages": "no",
  797. "groups": [
  798. "Microsoft Extensions"
  799. ],
  800. "initial": "0",
  801. "appliesto": "exclusionElements",
  802. "computed": "asSpecified",
  803. "order": "uniqueOrder",
  804. "status": "nonstandard",
  805. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-margin"
  806. },
  807. "-ms-wrap-through": {
  808. "syntax": "wrap | none",
  809. "media": "visual",
  810. "inherited": false,
  811. "animationType": "discrete",
  812. "percentages": "no",
  813. "groups": [
  814. "Microsoft Extensions"
  815. ],
  816. "initial": "wrap",
  817. "appliesto": "blockLevelElements",
  818. "computed": "asSpecified",
  819. "order": "uniqueOrder",
  820. "status": "nonstandard",
  821. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-ms-wrap-through"
  822. },
  823. "-moz-appearance": {
  824. "syntax": "none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized",
  825. "media": "visual",
  826. "inherited": false,
  827. "animationType": "discrete",
  828. "percentages": "no",
  829. "groups": [
  830. "Mozilla Extensions",
  831. "WebKit Extensions"
  832. ],
  833. "initial": "noneButOverriddenInUserAgentCSS",
  834. "appliesto": "allElements",
  835. "computed": "asSpecified",
  836. "order": "uniqueOrder",
  837. "status": "nonstandard",
  838. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance"
  839. },
  840. "-moz-binding": {
  841. "syntax": "<url> | none",
  842. "media": "visual",
  843. "inherited": false,
  844. "animationType": "discrete",
  845. "percentages": "no",
  846. "groups": [
  847. "Mozilla Extensions"
  848. ],
  849. "initial": "none",
  850. "appliesto": "allElementsExceptGeneratedContentOrPseudoElements",
  851. "computed": "asSpecified",
  852. "order": "uniqueOrder",
  853. "status": "nonstandard",
  854. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-binding"
  855. },
  856. "-moz-border-bottom-colors": {
  857. "syntax": "<color>+ | none",
  858. "media": "visual",
  859. "inherited": false,
  860. "animationType": "discrete",
  861. "percentages": "no",
  862. "groups": [
  863. "Mozilla Extensions"
  864. ],
  865. "initial": "none",
  866. "appliesto": "allElements",
  867. "computed": "asSpecified",
  868. "order": "uniqueOrder",
  869. "status": "nonstandard",
  870. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-bottom-colors"
  871. },
  872. "-moz-border-left-colors": {
  873. "syntax": "<color>+ | none",
  874. "media": "visual",
  875. "inherited": false,
  876. "animationType": "discrete",
  877. "percentages": "no",
  878. "groups": [
  879. "Mozilla Extensions"
  880. ],
  881. "initial": "none",
  882. "appliesto": "allElements",
  883. "computed": "asSpecified",
  884. "order": "uniqueOrder",
  885. "status": "nonstandard",
  886. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-left-colors"
  887. },
  888. "-moz-border-right-colors": {
  889. "syntax": "<color>+ | none",
  890. "media": "visual",
  891. "inherited": false,
  892. "animationType": "discrete",
  893. "percentages": "no",
  894. "groups": [
  895. "Mozilla Extensions"
  896. ],
  897. "initial": "none",
  898. "appliesto": "allElements",
  899. "computed": "asSpecified",
  900. "order": "uniqueOrder",
  901. "status": "nonstandard",
  902. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-right-colors"
  903. },
  904. "-moz-border-top-colors": {
  905. "syntax": "<color>+ | none",
  906. "media": "visual",
  907. "inherited": false,
  908. "animationType": "discrete",
  909. "percentages": "no",
  910. "groups": [
  911. "Mozilla Extensions"
  912. ],
  913. "initial": "none",
  914. "appliesto": "allElements",
  915. "computed": "asSpecified",
  916. "order": "uniqueOrder",
  917. "status": "nonstandard",
  918. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-border-top-colors"
  919. },
  920. "-moz-context-properties": {
  921. "syntax": "none | [ fill | fill-opacity | stroke | stroke-opacity ]#",
  922. "media": "visual",
  923. "inherited": true,
  924. "animationType": "discrete",
  925. "percentages": "no",
  926. "groups": [
  927. "Mozilla Extensions"
  928. ],
  929. "initial": "none",
  930. "appliesto": "allElementsThatCanReferenceImages",
  931. "computed": "asSpecified",
  932. "order": "uniqueOrder",
  933. "status": "nonstandard",
  934. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-context-properties"
  935. },
  936. "-moz-float-edge": {
  937. "syntax": "border-box | content-box | margin-box | padding-box",
  938. "media": "visual",
  939. "inherited": false,
  940. "animationType": "discrete",
  941. "percentages": "no",
  942. "groups": [
  943. "Mozilla Extensions"
  944. ],
  945. "initial": "content-box",
  946. "appliesto": "allElements",
  947. "computed": "asSpecified",
  948. "order": "uniqueOrder",
  949. "status": "nonstandard",
  950. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-float-edge"
  951. },
  952. "-moz-force-broken-image-icon": {
  953. "syntax": "<integer [0,1]>",
  954. "media": "visual",
  955. "inherited": false,
  956. "animationType": "discrete",
  957. "percentages": "no",
  958. "groups": [
  959. "Mozilla Extensions"
  960. ],
  961. "initial": "0",
  962. "appliesto": "images",
  963. "computed": "asSpecified",
  964. "order": "uniqueOrder",
  965. "status": "nonstandard",
  966. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-force-broken-image-icon"
  967. },
  968. "-moz-image-region": {
  969. "syntax": "<shape> | auto",
  970. "media": "visual",
  971. "inherited": true,
  972. "animationType": "discrete",
  973. "percentages": "no",
  974. "groups": [
  975. "Mozilla Extensions"
  976. ],
  977. "initial": "auto",
  978. "appliesto": "xulImageElements",
  979. "computed": "asSpecified",
  980. "order": "uniqueOrder",
  981. "status": "nonstandard",
  982. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-image-region"
  983. },
  984. "-moz-orient": {
  985. "syntax": "inline | block | horizontal | vertical",
  986. "media": "visual",
  987. "inherited": false,
  988. "animationType": "discrete",
  989. "percentages": "no",
  990. "groups": [
  991. "Mozilla Extensions"
  992. ],
  993. "initial": "inline",
  994. "appliesto": "anyElementEffectOnProgressAndMeter",
  995. "computed": "asSpecified",
  996. "order": "uniqueOrder",
  997. "status": "nonstandard",
  998. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-orient"
  999. },
  1000. "-moz-outline-radius": {
  1001. "syntax": "<outline-radius>{1,4} [ / <outline-radius>{1,4} ]?",
  1002. "media": "visual",
  1003. "inherited": false,
  1004. "animationType": [
  1005. "-moz-outline-radius-topleft",
  1006. "-moz-outline-radius-topright",
  1007. "-moz-outline-radius-bottomright",
  1008. "-moz-outline-radius-bottomleft"
  1009. ],
  1010. "percentages": [
  1011. "-moz-outline-radius-topleft",
  1012. "-moz-outline-radius-topright",
  1013. "-moz-outline-radius-bottomright",
  1014. "-moz-outline-radius-bottomleft"
  1015. ],
  1016. "groups": [
  1017. "Mozilla Extensions"
  1018. ],
  1019. "initial": [
  1020. "-moz-outline-radius-topleft",
  1021. "-moz-outline-radius-topright",
  1022. "-moz-outline-radius-bottomright",
  1023. "-moz-outline-radius-bottomleft"
  1024. ],
  1025. "appliesto": "allElements",
  1026. "computed": [
  1027. "-moz-outline-radius-topleft",
  1028. "-moz-outline-radius-topright",
  1029. "-moz-outline-radius-bottomright",
  1030. "-moz-outline-radius-bottomleft"
  1031. ],
  1032. "order": "uniqueOrder",
  1033. "status": "nonstandard",
  1034. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius"
  1035. },
  1036. "-moz-outline-radius-bottomleft": {
  1037. "syntax": "<outline-radius>",
  1038. "media": "visual",
  1039. "inherited": false,
  1040. "animationType": "lpc",
  1041. "percentages": "referToDimensionOfBorderBox",
  1042. "groups": [
  1043. "Mozilla Extensions"
  1044. ],
  1045. "initial": "0",
  1046. "appliesto": "allElements",
  1047. "computed": "asSpecified",
  1048. "order": "uniqueOrder",
  1049. "status": "nonstandard",
  1050. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomleft"
  1051. },
  1052. "-moz-outline-radius-bottomright": {
  1053. "syntax": "<outline-radius>",
  1054. "media": "visual",
  1055. "inherited": false,
  1056. "animationType": "lpc",
  1057. "percentages": "referToDimensionOfBorderBox",
  1058. "groups": [
  1059. "Mozilla Extensions"
  1060. ],
  1061. "initial": "0",
  1062. "appliesto": "allElements",
  1063. "computed": "asSpecified",
  1064. "order": "uniqueOrder",
  1065. "status": "nonstandard",
  1066. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-bottomright"
  1067. },
  1068. "-moz-outline-radius-topleft": {
  1069. "syntax": "<outline-radius>",
  1070. "media": "visual",
  1071. "inherited": false,
  1072. "animationType": "lpc",
  1073. "percentages": "referToDimensionOfBorderBox",
  1074. "groups": [
  1075. "Mozilla Extensions"
  1076. ],
  1077. "initial": "0",
  1078. "appliesto": "allElements",
  1079. "computed": "asSpecified",
  1080. "order": "uniqueOrder",
  1081. "status": "nonstandard",
  1082. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topleft"
  1083. },
  1084. "-moz-outline-radius-topright": {
  1085. "syntax": "<outline-radius>",
  1086. "media": "visual",
  1087. "inherited": false,
  1088. "animationType": "lpc",
  1089. "percentages": "referToDimensionOfBorderBox",
  1090. "groups": [
  1091. "Mozilla Extensions"
  1092. ],
  1093. "initial": "0",
  1094. "appliesto": "allElements",
  1095. "computed": "asSpecified",
  1096. "order": "uniqueOrder",
  1097. "status": "nonstandard",
  1098. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-outline-radius-topright"
  1099. },
  1100. "-moz-stack-sizing": {
  1101. "syntax": "ignore | stretch-to-fit",
  1102. "media": "visual",
  1103. "inherited": true,
  1104. "animationType": "discrete",
  1105. "percentages": "no",
  1106. "groups": [
  1107. "Mozilla Extensions"
  1108. ],
  1109. "initial": "stretch-to-fit",
  1110. "appliesto": "allElements",
  1111. "computed": "asSpecified",
  1112. "order": "uniqueOrder",
  1113. "status": "nonstandard",
  1114. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-stack-sizing"
  1115. },
  1116. "-moz-text-blink": {
  1117. "syntax": "none | blink",
  1118. "media": "visual",
  1119. "inherited": false,
  1120. "animationType": "discrete",
  1121. "percentages": "no",
  1122. "groups": [
  1123. "Mozilla Extensions"
  1124. ],
  1125. "initial": "none",
  1126. "appliesto": "allElements",
  1127. "computed": "asSpecified",
  1128. "order": "uniqueOrder",
  1129. "status": "nonstandard",
  1130. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-text-blink"
  1131. },
  1132. "-moz-user-focus": {
  1133. "syntax": "ignore | normal | select-after | select-before | select-menu | select-same | select-all | none",
  1134. "media": "interactive",
  1135. "inherited": false,
  1136. "animationType": "discrete",
  1137. "percentages": "no",
  1138. "groups": [
  1139. "Mozilla Extensions"
  1140. ],
  1141. "initial": "none",
  1142. "appliesto": "allElements",
  1143. "computed": "asSpecified",
  1144. "order": "uniqueOrder",
  1145. "status": "nonstandard",
  1146. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-user-focus"
  1147. },
  1148. "-moz-user-input": {
  1149. "syntax": "auto | none | enabled | disabled",
  1150. "media": "visual",
  1151. "inherited": true,
  1152. "animationType": "discrete",
  1153. "percentages": "no",
  1154. "groups": [
  1155. "Mozilla Extensions"
  1156. ],
  1157. "initial": "auto",
  1158. "appliesto": "allElements",
  1159. "computed": "asSpecified",
  1160. "order": "uniqueOrder",
  1161. "status": "nonstandard",
  1162. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-user-input"
  1163. },
  1164. "-moz-user-modify": {
  1165. "syntax": "read-only | read-write | write-only",
  1166. "media": "interactive",
  1167. "inherited": true,
  1168. "animationType": "discrete",
  1169. "percentages": "no",
  1170. "groups": [
  1171. "Mozilla Extensions"
  1172. ],
  1173. "initial": "read-only",
  1174. "appliesto": "allElements",
  1175. "computed": "asSpecified",
  1176. "order": "uniqueOrder",
  1177. "status": "nonstandard",
  1178. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-user-modify"
  1179. },
  1180. "-moz-window-dragging": {
  1181. "syntax": "drag | no-drag",
  1182. "media": "visual",
  1183. "inherited": false,
  1184. "animationType": "discrete",
  1185. "percentages": "no",
  1186. "groups": [
  1187. "Mozilla Extensions"
  1188. ],
  1189. "initial": "drag",
  1190. "appliesto": "allElementsCreatingNativeWindows",
  1191. "computed": "asSpecified",
  1192. "order": "uniqueOrder",
  1193. "status": "nonstandard",
  1194. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-window-dragging"
  1195. },
  1196. "-moz-window-shadow": {
  1197. "syntax": "default | menu | tooltip | sheet | none",
  1198. "media": "visual",
  1199. "inherited": false,
  1200. "animationType": "discrete",
  1201. "percentages": "no",
  1202. "groups": [
  1203. "Mozilla Extensions"
  1204. ],
  1205. "initial": "default",
  1206. "appliesto": "allElementsCreatingNativeWindows",
  1207. "computed": "asSpecified",
  1208. "order": "uniqueOrder",
  1209. "status": "nonstandard",
  1210. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-moz-window-shadow"
  1211. },
  1212. "-webkit-appearance": {
  1213. "syntax": "none | button | button-bevel | caret | checkbox | default-button | inner-spin-button | listbox | listitem | media-controls-background | media-controls-fullscreen-background | media-current-time-display | media-enter-fullscreen-button | media-exit-fullscreen-button | media-fullscreen-button | media-mute-button | media-overlay-play-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | media-time-remaining-display | media-toggle-closed-captions-button | media-volume-slider | media-volume-slider-container | media-volume-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | meter | progress-bar | progress-bar-value | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | -apple-pay-button",
  1214. "media": "visual",
  1215. "inherited": false,
  1216. "animationType": "discrete",
  1217. "percentages": "no",
  1218. "groups": [
  1219. "WebKit Extensions"
  1220. ],
  1221. "initial": "noneButOverriddenInUserAgentCSS",
  1222. "appliesto": "allElements",
  1223. "computed": "asSpecified",
  1224. "order": "uniqueOrder",
  1225. "status": "nonstandard",
  1226. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance"
  1227. },
  1228. "-webkit-border-before": {
  1229. "syntax": "<'border-width'> || <'border-style'> || <'color'>",
  1230. "media": "visual",
  1231. "inherited": true,
  1232. "animationType": "discrete",
  1233. "percentages": [
  1234. "-webkit-border-before-width"
  1235. ],
  1236. "groups": [
  1237. "WebKit Extensions"
  1238. ],
  1239. "initial": [
  1240. "border-width",
  1241. "border-style",
  1242. "color"
  1243. ],
  1244. "appliesto": "allElements",
  1245. "computed": [
  1246. "border-width",
  1247. "border-style",
  1248. "color"
  1249. ],
  1250. "order": "uniqueOrder",
  1251. "status": "nonstandard",
  1252. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-border-before"
  1253. },
  1254. "-webkit-border-before-color": {
  1255. "syntax": "<'color'>",
  1256. "media": "visual",
  1257. "inherited": true,
  1258. "animationType": "discrete",
  1259. "percentages": "no",
  1260. "groups": [
  1261. "WebKit Extensions"
  1262. ],
  1263. "initial": "currentcolor",
  1264. "appliesto": "allElements",
  1265. "computed": "computedColor",
  1266. "order": "uniqueOrder",
  1267. "status": "nonstandard"
  1268. },
  1269. "-webkit-border-before-style": {
  1270. "syntax": "<'border-style'>",
  1271. "media": "visual",
  1272. "inherited": true,
  1273. "animationType": "discrete",
  1274. "percentages": "no",
  1275. "groups": [
  1276. "WebKit Extensions"
  1277. ],
  1278. "initial": "none",
  1279. "appliesto": "allElements",
  1280. "computed": "asSpecified",
  1281. "order": "uniqueOrder",
  1282. "status": "nonstandard"
  1283. },
  1284. "-webkit-border-before-width": {
  1285. "syntax": "<'border-width'>",
  1286. "media": "visual",
  1287. "inherited": true,
  1288. "animationType": "discrete",
  1289. "percentages": "logicalWidthOfContainingBlock",
  1290. "groups": [
  1291. "WebKit Extensions"
  1292. ],
  1293. "initial": "medium",
  1294. "appliesto": "allElements",
  1295. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  1296. "order": "uniqueOrder",
  1297. "status": "nonstandard"
  1298. },
  1299. "-webkit-box-reflect": {
  1300. "syntax": "[ above | below | right | left ]? <length>? <image>?",
  1301. "media": "visual",
  1302. "inherited": false,
  1303. "animationType": "discrete",
  1304. "percentages": "no",
  1305. "groups": [
  1306. "WebKit Extensions"
  1307. ],
  1308. "initial": "none",
  1309. "appliesto": "allElements",
  1310. "computed": "asSpecified",
  1311. "order": "uniqueOrder",
  1312. "status": "nonstandard",
  1313. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-box-reflect"
  1314. },
  1315. "-webkit-line-clamp": {
  1316. "syntax": "none | <integer>",
  1317. "media": "visual",
  1318. "inherited": false,
  1319. "animationType": "byComputedValueType",
  1320. "percentages": "no",
  1321. "groups": [
  1322. "WebKit Extensions",
  1323. "CSS Overflow"
  1324. ],
  1325. "initial": "none",
  1326. "appliesto": "allElements",
  1327. "computed": "asSpecified",
  1328. "order": "uniqueOrder",
  1329. "status": "standard",
  1330. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-line-clamp"
  1331. },
  1332. "-webkit-mask": {
  1333. "syntax": "[ <mask-reference> || <position> [ / <bg-size> ]? || <repeat-style> || [ <box> | border | padding | content | text ] || [ <box> | border | padding | content ] ]#",
  1334. "media": "visual",
  1335. "inherited": false,
  1336. "animationType": "discrete",
  1337. "percentages": "no",
  1338. "groups": [
  1339. "WebKit Extensions"
  1340. ],
  1341. "initial": [
  1342. "-webkit-mask-image",
  1343. "-webkit-mask-repeat",
  1344. "-webkit-mask-attachment",
  1345. "-webkit-mask-position",
  1346. "-webkit-mask-origin",
  1347. "-webkit-mask-clip"
  1348. ],
  1349. "appliesto": "allElements",
  1350. "computed": [
  1351. "-webkit-mask-image",
  1352. "-webkit-mask-repeat",
  1353. "-webkit-mask-attachment",
  1354. "-webkit-mask-position",
  1355. "-webkit-mask-origin",
  1356. "-webkit-mask-clip"
  1357. ],
  1358. "order": "uniqueOrder",
  1359. "status": "nonstandard",
  1360. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask"
  1361. },
  1362. "-webkit-mask-attachment": {
  1363. "syntax": "<attachment>#",
  1364. "media": "visual",
  1365. "inherited": false,
  1366. "animationType": "discrete",
  1367. "percentages": "no",
  1368. "groups": [
  1369. "WebKit Extensions"
  1370. ],
  1371. "initial": "scroll",
  1372. "appliesto": "allElements",
  1373. "computed": "asSpecified",
  1374. "order": "orderOfAppearance",
  1375. "status": "nonstandard",
  1376. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-attachment"
  1377. },
  1378. "-webkit-mask-clip": {
  1379. "syntax": "[ <box> | border | padding | content | text ]#",
  1380. "media": "visual",
  1381. "inherited": false,
  1382. "animationType": "discrete",
  1383. "percentages": "no",
  1384. "groups": [
  1385. "WebKit Extensions"
  1386. ],
  1387. "initial": "border",
  1388. "appliesto": "allElements",
  1389. "computed": "asSpecified",
  1390. "order": "orderOfAppearance",
  1391. "status": "nonstandard",
  1392. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-clip"
  1393. },
  1394. "-webkit-mask-composite": {
  1395. "syntax": "<composite-style>#",
  1396. "media": "visual",
  1397. "inherited": false,
  1398. "animationType": "discrete",
  1399. "percentages": "no",
  1400. "groups": [
  1401. "WebKit Extensions"
  1402. ],
  1403. "initial": "source-over",
  1404. "appliesto": "allElements",
  1405. "computed": "asSpecified",
  1406. "order": "orderOfAppearance",
  1407. "status": "nonstandard",
  1408. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-composite"
  1409. },
  1410. "-webkit-mask-image": {
  1411. "syntax": "<mask-reference>#",
  1412. "media": "visual",
  1413. "inherited": false,
  1414. "animationType": "discrete",
  1415. "percentages": "no",
  1416. "groups": [
  1417. "WebKit Extensions"
  1418. ],
  1419. "initial": "none",
  1420. "appliesto": "allElements",
  1421. "computed": "absoluteURIOrNone",
  1422. "order": "orderOfAppearance",
  1423. "status": "nonstandard",
  1424. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-image"
  1425. },
  1426. "-webkit-mask-origin": {
  1427. "syntax": "[ <box> | border | padding | content ]#",
  1428. "media": "visual",
  1429. "inherited": false,
  1430. "animationType": "discrete",
  1431. "percentages": "no",
  1432. "groups": [
  1433. "WebKit Extensions"
  1434. ],
  1435. "initial": "padding",
  1436. "appliesto": "allElements",
  1437. "computed": "asSpecified",
  1438. "order": "orderOfAppearance",
  1439. "status": "nonstandard",
  1440. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-origin"
  1441. },
  1442. "-webkit-mask-position": {
  1443. "syntax": "<position>#",
  1444. "media": "visual",
  1445. "inherited": false,
  1446. "animationType": "discrete",
  1447. "percentages": "referToSizeOfElement",
  1448. "groups": [
  1449. "WebKit Extensions"
  1450. ],
  1451. "initial": "0% 0%",
  1452. "appliesto": "allElements",
  1453. "computed": "absoluteLengthOrPercentage",
  1454. "order": "orderOfAppearance",
  1455. "status": "nonstandard",
  1456. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-position"
  1457. },
  1458. "-webkit-mask-position-x": {
  1459. "syntax": "[ <length-percentage> | left | center | right ]#",
  1460. "media": "visual",
  1461. "inherited": false,
  1462. "animationType": "discrete",
  1463. "percentages": "referToSizeOfElement",
  1464. "groups": [
  1465. "WebKit Extensions"
  1466. ],
  1467. "initial": "0%",
  1468. "appliesto": "allElements",
  1469. "computed": "absoluteLengthOrPercentage",
  1470. "order": "orderOfAppearance",
  1471. "status": "nonstandard",
  1472. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-x"
  1473. },
  1474. "-webkit-mask-position-y": {
  1475. "syntax": "[ <length-percentage> | top | center | bottom ]#",
  1476. "media": "visual",
  1477. "inherited": false,
  1478. "animationType": "discrete",
  1479. "percentages": "referToSizeOfElement",
  1480. "groups": [
  1481. "WebKit Extensions"
  1482. ],
  1483. "initial": "0%",
  1484. "appliesto": "allElements",
  1485. "computed": "absoluteLengthOrPercentage",
  1486. "order": "orderOfAppearance",
  1487. "status": "nonstandard",
  1488. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-position-y"
  1489. },
  1490. "-webkit-mask-repeat": {
  1491. "syntax": "<repeat-style>#",
  1492. "media": "visual",
  1493. "inherited": false,
  1494. "animationType": "discrete",
  1495. "percentages": "no",
  1496. "groups": [
  1497. "WebKit Extensions"
  1498. ],
  1499. "initial": "repeat",
  1500. "appliesto": "allElements",
  1501. "computed": "asSpecified",
  1502. "order": "orderOfAppearance",
  1503. "status": "nonstandard",
  1504. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-repeat"
  1505. },
  1506. "-webkit-mask-repeat-x": {
  1507. "syntax": "repeat | no-repeat | space | round",
  1508. "media": "visual",
  1509. "inherited": false,
  1510. "animationType": "discrete",
  1511. "percentages": "no",
  1512. "groups": [
  1513. "WebKit Extensions"
  1514. ],
  1515. "initial": "repeat",
  1516. "appliesto": "allElements",
  1517. "computed": "asSpecified",
  1518. "order": "orderOfAppearance",
  1519. "status": "nonstandard",
  1520. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-x"
  1521. },
  1522. "-webkit-mask-repeat-y": {
  1523. "syntax": "repeat | no-repeat | space | round",
  1524. "media": "visual",
  1525. "inherited": false,
  1526. "animationType": "discrete",
  1527. "percentages": "no",
  1528. "groups": [
  1529. "WebKit Extensions"
  1530. ],
  1531. "initial": "repeat",
  1532. "appliesto": "allElements",
  1533. "computed": "absoluteLengthOrPercentage",
  1534. "order": "orderOfAppearance",
  1535. "status": "nonstandard",
  1536. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-mask-repeat-y"
  1537. },
  1538. "-webkit-mask-size": {
  1539. "syntax": "<bg-size>#",
  1540. "media": "visual",
  1541. "inherited": false,
  1542. "animationType": "discrete",
  1543. "percentages": "relativeToBackgroundPositioningArea",
  1544. "groups": [
  1545. "WebKit Extensions"
  1546. ],
  1547. "initial": "auto auto",
  1548. "appliesto": "allElements",
  1549. "computed": "asSpecified",
  1550. "order": "orderOfAppearance",
  1551. "status": "nonstandard",
  1552. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-size"
  1553. },
  1554. "-webkit-overflow-scrolling": {
  1555. "syntax": "auto | touch",
  1556. "media": "visual",
  1557. "inherited": true,
  1558. "animationType": "discrete",
  1559. "percentages": "no",
  1560. "groups": [
  1561. "WebKit Extensions"
  1562. ],
  1563. "initial": "auto",
  1564. "appliesto": "scrollingBoxes",
  1565. "computed": "asSpecified",
  1566. "order": "orderOfAppearance",
  1567. "status": "nonstandard",
  1568. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-overflow-scrolling"
  1569. },
  1570. "-webkit-tap-highlight-color": {
  1571. "syntax": "<color>",
  1572. "media": "visual",
  1573. "inherited": false,
  1574. "animationType": "discrete",
  1575. "percentages": "no",
  1576. "groups": [
  1577. "WebKit Extensions"
  1578. ],
  1579. "initial": "black",
  1580. "appliesto": "allElements",
  1581. "computed": "asSpecified",
  1582. "order": "uniqueOrder",
  1583. "status": "nonstandard",
  1584. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-tap-highlight-color"
  1585. },
  1586. "-webkit-text-fill-color": {
  1587. "syntax": "<color>",
  1588. "media": "visual",
  1589. "inherited": true,
  1590. "animationType": "color",
  1591. "percentages": "no",
  1592. "groups": [
  1593. "WebKit Extensions"
  1594. ],
  1595. "initial": "currentcolor",
  1596. "appliesto": "allElements",
  1597. "computed": "computedColor",
  1598. "order": "uniqueOrder",
  1599. "status": "nonstandard",
  1600. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-fill-color"
  1601. },
  1602. "-webkit-text-stroke": {
  1603. "syntax": "<length> || <color>",
  1604. "media": "visual",
  1605. "inherited": true,
  1606. "animationType": [
  1607. "-webkit-text-stroke-width",
  1608. "-webkit-text-stroke-color"
  1609. ],
  1610. "percentages": "no",
  1611. "groups": [
  1612. "WebKit Extensions"
  1613. ],
  1614. "initial": [
  1615. "-webkit-text-stroke-width",
  1616. "-webkit-text-stroke-color"
  1617. ],
  1618. "appliesto": "allElements",
  1619. "computed": [
  1620. "-webkit-text-stroke-width",
  1621. "-webkit-text-stroke-color"
  1622. ],
  1623. "order": "canonicalOrder",
  1624. "status": "nonstandard",
  1625. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke"
  1626. },
  1627. "-webkit-text-stroke-color": {
  1628. "syntax": "<color>",
  1629. "media": "visual",
  1630. "inherited": true,
  1631. "animationType": "color",
  1632. "percentages": "no",
  1633. "groups": [
  1634. "WebKit Extensions"
  1635. ],
  1636. "initial": "currentcolor",
  1637. "appliesto": "allElements",
  1638. "computed": "computedColor",
  1639. "order": "uniqueOrder",
  1640. "status": "nonstandard",
  1641. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-color"
  1642. },
  1643. "-webkit-text-stroke-width": {
  1644. "syntax": "<length>",
  1645. "media": "visual",
  1646. "inherited": true,
  1647. "animationType": "discrete",
  1648. "percentages": "no",
  1649. "groups": [
  1650. "WebKit Extensions"
  1651. ],
  1652. "initial": "0",
  1653. "appliesto": "allElements",
  1654. "computed": "absoluteLength",
  1655. "order": "uniqueOrder",
  1656. "status": "nonstandard",
  1657. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke-width"
  1658. },
  1659. "-webkit-touch-callout": {
  1660. "syntax": "default | none",
  1661. "media": "visual",
  1662. "inherited": true,
  1663. "animationType": "discrete",
  1664. "percentages": "no",
  1665. "groups": [
  1666. "WebKit Extensions"
  1667. ],
  1668. "initial": "default",
  1669. "appliesto": "allElements",
  1670. "computed": "asSpecified",
  1671. "order": "uniqueOrder",
  1672. "status": "nonstandard",
  1673. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/-webkit-touch-callout"
  1674. },
  1675. "-webkit-user-modify": {
  1676. "syntax": "read-only | read-write | read-write-plaintext-only",
  1677. "media": "interactive",
  1678. "inherited": true,
  1679. "animationType": "discrete",
  1680. "percentages": "no",
  1681. "groups": [
  1682. "WebKit Extensions"
  1683. ],
  1684. "initial": "read-only",
  1685. "appliesto": "allElements",
  1686. "computed": "asSpecified",
  1687. "order": "uniqueOrder",
  1688. "status": "nonstandard"
  1689. },
  1690. "align-content": {
  1691. "syntax": "normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>",
  1692. "media": "visual",
  1693. "inherited": false,
  1694. "animationType": "discrete",
  1695. "percentages": "no",
  1696. "groups": [
  1697. "CSS Box Alignment"
  1698. ],
  1699. "initial": "normal",
  1700. "appliesto": "multilineFlexContainers",
  1701. "computed": "asSpecified",
  1702. "order": "uniqueOrder",
  1703. "status": "standard",
  1704. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-content"
  1705. },
  1706. "align-items": {
  1707. "syntax": "normal | stretch | <baseline-position> | [ <overflow-position>? <self-position> ]",
  1708. "media": "visual",
  1709. "inherited": false,
  1710. "animationType": "discrete",
  1711. "percentages": "no",
  1712. "groups": [
  1713. "CSS Box Alignment"
  1714. ],
  1715. "initial": "normal",
  1716. "appliesto": "allElements",
  1717. "computed": "asSpecified",
  1718. "order": "uniqueOrder",
  1719. "status": "standard",
  1720. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-items"
  1721. },
  1722. "align-self": {
  1723. "syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position>",
  1724. "media": "visual",
  1725. "inherited": false,
  1726. "animationType": "discrete",
  1727. "percentages": "no",
  1728. "groups": [
  1729. "CSS Box Alignment"
  1730. ],
  1731. "initial": "auto",
  1732. "appliesto": "flexItemsGridItemsAndAbsolutelyPositionedBoxes",
  1733. "computed": "autoOnAbsolutelyPositionedElementsValueOfAlignItemsOnParent",
  1734. "order": "uniqueOrder",
  1735. "status": "standard",
  1736. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-self"
  1737. },
  1738. "align-tracks": {
  1739. "syntax": "[ normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position> ]#",
  1740. "media": "visual",
  1741. "inherited": false,
  1742. "animationType": "discrete",
  1743. "percentages": "no",
  1744. "groups": [
  1745. "CSS Grid Layout"
  1746. ],
  1747. "initial": "normal",
  1748. "appliesto": "gridContainersWithMasonryLayoutInTheirBlockAxis",
  1749. "computed": "asSpecified",
  1750. "order": "uniqueOrder",
  1751. "status": "experimental",
  1752. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/align-tracks"
  1753. },
  1754. "all": {
  1755. "syntax": "initial | inherit | unset | revert",
  1756. "media": "noPracticalMedia",
  1757. "inherited": false,
  1758. "animationType": "eachOfShorthandPropertiesExceptUnicodeBiDiAndDirection",
  1759. "percentages": "no",
  1760. "groups": [
  1761. "CSS Miscellaneous"
  1762. ],
  1763. "initial": "noPracticalInitialValue",
  1764. "appliesto": "allElements",
  1765. "computed": "asSpecifiedAppliesToEachProperty",
  1766. "order": "uniqueOrder",
  1767. "status": "standard",
  1768. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/all"
  1769. },
  1770. "animation": {
  1771. "syntax": "<single-animation>#",
  1772. "media": "visual",
  1773. "inherited": false,
  1774. "animationType": "discrete",
  1775. "percentages": "no",
  1776. "groups": [
  1777. "CSS Animations"
  1778. ],
  1779. "initial": [
  1780. "animation-name",
  1781. "animation-duration",
  1782. "animation-timing-function",
  1783. "animation-delay",
  1784. "animation-iteration-count",
  1785. "animation-direction",
  1786. "animation-fill-mode",
  1787. "animation-play-state"
  1788. ],
  1789. "appliesto": "allElementsAndPseudos",
  1790. "computed": [
  1791. "animation-name",
  1792. "animation-duration",
  1793. "animation-timing-function",
  1794. "animation-delay",
  1795. "animation-direction",
  1796. "animation-iteration-count",
  1797. "animation-fill-mode",
  1798. "animation-play-state"
  1799. ],
  1800. "order": "orderOfAppearance",
  1801. "status": "standard",
  1802. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation"
  1803. },
  1804. "animation-delay": {
  1805. "syntax": "<time>#",
  1806. "media": "visual",
  1807. "inherited": false,
  1808. "animationType": "discrete",
  1809. "percentages": "no",
  1810. "groups": [
  1811. "CSS Animations"
  1812. ],
  1813. "initial": "0s",
  1814. "appliesto": "allElementsAndPseudos",
  1815. "computed": "asSpecified",
  1816. "order": "uniqueOrder",
  1817. "status": "standard",
  1818. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-delay"
  1819. },
  1820. "animation-direction": {
  1821. "syntax": "<single-animation-direction>#",
  1822. "media": "visual",
  1823. "inherited": false,
  1824. "animationType": "discrete",
  1825. "percentages": "no",
  1826. "groups": [
  1827. "CSS Animations"
  1828. ],
  1829. "initial": "normal",
  1830. "appliesto": "allElementsAndPseudos",
  1831. "computed": "asSpecified",
  1832. "order": "uniqueOrder",
  1833. "status": "standard",
  1834. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-direction"
  1835. },
  1836. "animation-duration": {
  1837. "syntax": "<time>#",
  1838. "media": "visual",
  1839. "inherited": false,
  1840. "animationType": "discrete",
  1841. "percentages": "no",
  1842. "groups": [
  1843. "CSS Animations"
  1844. ],
  1845. "initial": "0s",
  1846. "appliesto": "allElementsAndPseudos",
  1847. "computed": "asSpecified",
  1848. "order": "uniqueOrder",
  1849. "status": "standard",
  1850. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-duration"
  1851. },
  1852. "animation-fill-mode": {
  1853. "syntax": "<single-animation-fill-mode>#",
  1854. "media": "visual",
  1855. "inherited": false,
  1856. "animationType": "discrete",
  1857. "percentages": "no",
  1858. "groups": [
  1859. "CSS Animations"
  1860. ],
  1861. "initial": "none",
  1862. "appliesto": "allElementsAndPseudos",
  1863. "computed": "asSpecified",
  1864. "order": "uniqueOrder",
  1865. "status": "standard",
  1866. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-fill-mode"
  1867. },
  1868. "animation-iteration-count": {
  1869. "syntax": "<single-animation-iteration-count>#",
  1870. "media": "visual",
  1871. "inherited": false,
  1872. "animationType": "discrete",
  1873. "percentages": "no",
  1874. "groups": [
  1875. "CSS Animations"
  1876. ],
  1877. "initial": "1",
  1878. "appliesto": "allElementsAndPseudos",
  1879. "computed": "asSpecified",
  1880. "order": "uniqueOrder",
  1881. "status": "standard",
  1882. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-iteration-count"
  1883. },
  1884. "animation-name": {
  1885. "syntax": "[ none | <keyframes-name> ]#",
  1886. "media": "visual",
  1887. "inherited": false,
  1888. "animationType": "discrete",
  1889. "percentages": "no",
  1890. "groups": [
  1891. "CSS Animations"
  1892. ],
  1893. "initial": "none",
  1894. "appliesto": "allElementsAndPseudos",
  1895. "computed": "asSpecified",
  1896. "order": "uniqueOrder",
  1897. "status": "standard",
  1898. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-name"
  1899. },
  1900. "animation-play-state": {
  1901. "syntax": "<single-animation-play-state>#",
  1902. "media": "visual",
  1903. "inherited": false,
  1904. "animationType": "discrete",
  1905. "percentages": "no",
  1906. "groups": [
  1907. "CSS Animations"
  1908. ],
  1909. "initial": "running",
  1910. "appliesto": "allElementsAndPseudos",
  1911. "computed": "asSpecified",
  1912. "order": "uniqueOrder",
  1913. "status": "standard",
  1914. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-play-state"
  1915. },
  1916. "animation-timing-function": {
  1917. "syntax": "<timing-function>#",
  1918. "media": "visual",
  1919. "inherited": false,
  1920. "animationType": "discrete",
  1921. "percentages": "no",
  1922. "groups": [
  1923. "CSS Animations"
  1924. ],
  1925. "initial": "ease",
  1926. "appliesto": "allElementsAndPseudos",
  1927. "computed": "asSpecified",
  1928. "order": "uniqueOrder",
  1929. "status": "standard",
  1930. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-timing-function"
  1931. },
  1932. "appearance": {
  1933. "syntax": "none | auto | textfield | menulist-button | <compat-auto>",
  1934. "media": "all",
  1935. "inherited": false,
  1936. "animationType": "discrete",
  1937. "percentages": "no",
  1938. "groups": [
  1939. "CSS Basic User Interface"
  1940. ],
  1941. "initial": "auto",
  1942. "appliesto": "allElements",
  1943. "computed": "asSpecified",
  1944. "order": "perGrammar",
  1945. "status": "experimental",
  1946. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/appearance"
  1947. },
  1948. "aspect-ratio": {
  1949. "syntax": "auto | <ratio>",
  1950. "media": "all",
  1951. "inherited": false,
  1952. "animationType": "discrete",
  1953. "percentages": "no",
  1954. "groups": [
  1955. "CSS Basic User Interface"
  1956. ],
  1957. "initial": "auto",
  1958. "appliesto": "allElementsExceptInlineBoxesAndInternalRubyOrTableBoxes",
  1959. "computed": "asSpecified",
  1960. "order": "perGrammar",
  1961. "status": "experimental",
  1962. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/aspect-ratio"
  1963. },
  1964. "azimuth": {
  1965. "syntax": "<angle> | [ [ left-side | far-left | left | center-left | center | center-right | right | far-right | right-side ] || behind ] | leftwards | rightwards",
  1966. "media": "aural",
  1967. "inherited": true,
  1968. "animationType": "discrete",
  1969. "percentages": "no",
  1970. "groups": [
  1971. "CSS Speech"
  1972. ],
  1973. "initial": "center",
  1974. "appliesto": "allElements",
  1975. "computed": "normalizedAngle",
  1976. "order": "orderOfAppearance",
  1977. "status": "obsolete",
  1978. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/azimuth"
  1979. },
  1980. "backdrop-filter": {
  1981. "syntax": "none | <filter-function-list>",
  1982. "media": "visual",
  1983. "inherited": false,
  1984. "animationType": "filterList",
  1985. "percentages": "no",
  1986. "groups": [
  1987. "Filter Effects"
  1988. ],
  1989. "initial": "none",
  1990. "appliesto": "allElementsSVGContainerElements",
  1991. "computed": "asSpecified",
  1992. "order": "uniqueOrder",
  1993. "status": "standard",
  1994. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/backdrop-filter"
  1995. },
  1996. "backface-visibility": {
  1997. "syntax": "visible | hidden",
  1998. "media": "visual",
  1999. "inherited": false,
  2000. "animationType": "discrete",
  2001. "percentages": "no",
  2002. "groups": [
  2003. "CSS Transforms"
  2004. ],
  2005. "initial": "visible",
  2006. "appliesto": "transformableElements",
  2007. "computed": "asSpecified",
  2008. "order": "uniqueOrder",
  2009. "status": "standard",
  2010. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/backface-visibility"
  2011. },
  2012. "background": {
  2013. "syntax": "[ <bg-layer> , ]* <final-bg-layer>",
  2014. "media": "visual",
  2015. "inherited": false,
  2016. "animationType": [
  2017. "background-color",
  2018. "background-image",
  2019. "background-clip",
  2020. "background-position",
  2021. "background-size",
  2022. "background-repeat",
  2023. "background-attachment"
  2024. ],
  2025. "percentages": [
  2026. "background-position",
  2027. "background-size"
  2028. ],
  2029. "groups": [
  2030. "CSS Backgrounds and Borders"
  2031. ],
  2032. "initial": [
  2033. "background-image",
  2034. "background-position",
  2035. "background-size",
  2036. "background-repeat",
  2037. "background-origin",
  2038. "background-clip",
  2039. "background-attachment",
  2040. "background-color"
  2041. ],
  2042. "appliesto": "allElements",
  2043. "computed": [
  2044. "background-image",
  2045. "background-position",
  2046. "background-size",
  2047. "background-repeat",
  2048. "background-origin",
  2049. "background-clip",
  2050. "background-attachment",
  2051. "background-color"
  2052. ],
  2053. "order": "orderOfAppearance",
  2054. "alsoAppliesTo": [
  2055. "::first-letter",
  2056. "::first-line",
  2057. "::placeholder"
  2058. ],
  2059. "status": "standard",
  2060. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background"
  2061. },
  2062. "background-attachment": {
  2063. "syntax": "<attachment>#",
  2064. "media": "visual",
  2065. "inherited": false,
  2066. "animationType": "discrete",
  2067. "percentages": "no",
  2068. "groups": [
  2069. "CSS Backgrounds and Borders"
  2070. ],
  2071. "initial": "scroll",
  2072. "appliesto": "allElements",
  2073. "computed": "asSpecified",
  2074. "order": "uniqueOrder",
  2075. "alsoAppliesTo": [
  2076. "::first-letter",
  2077. "::first-line",
  2078. "::placeholder"
  2079. ],
  2080. "status": "standard",
  2081. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-attachment"
  2082. },
  2083. "background-blend-mode": {
  2084. "syntax": "<blend-mode>#",
  2085. "media": "none",
  2086. "inherited": false,
  2087. "animationType": "discrete",
  2088. "percentages": "no",
  2089. "groups": [
  2090. "Compositing and Blending"
  2091. ],
  2092. "initial": "normal",
  2093. "appliesto": "allElementsSVGContainerGraphicsAndGraphicsReferencingElements",
  2094. "computed": "asSpecified",
  2095. "order": "uniqueOrder",
  2096. "alsoAppliesTo": [
  2097. "::first-letter",
  2098. "::first-line",
  2099. "::placeholder"
  2100. ],
  2101. "status": "standard",
  2102. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-blend-mode"
  2103. },
  2104. "background-clip": {
  2105. "syntax": "<box>#",
  2106. "media": "visual",
  2107. "inherited": false,
  2108. "animationType": "discrete",
  2109. "percentages": "no",
  2110. "groups": [
  2111. "CSS Backgrounds and Borders"
  2112. ],
  2113. "initial": "border-box",
  2114. "appliesto": "allElements",
  2115. "computed": "asSpecified",
  2116. "order": "uniqueOrder",
  2117. "alsoAppliesTo": [
  2118. "::first-letter",
  2119. "::first-line",
  2120. "::placeholder"
  2121. ],
  2122. "status": "standard",
  2123. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-clip"
  2124. },
  2125. "background-color": {
  2126. "syntax": "<color>",
  2127. "media": "visual",
  2128. "inherited": false,
  2129. "animationType": "color",
  2130. "percentages": "no",
  2131. "groups": [
  2132. "CSS Backgrounds and Borders"
  2133. ],
  2134. "initial": "transparent",
  2135. "appliesto": "allElements",
  2136. "computed": "computedColor",
  2137. "order": "uniqueOrder",
  2138. "alsoAppliesTo": [
  2139. "::first-letter",
  2140. "::first-line",
  2141. "::placeholder"
  2142. ],
  2143. "status": "standard",
  2144. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-color"
  2145. },
  2146. "background-image": {
  2147. "syntax": "<bg-image>#",
  2148. "media": "visual",
  2149. "inherited": false,
  2150. "animationType": "discrete",
  2151. "percentages": "no",
  2152. "groups": [
  2153. "CSS Backgrounds and Borders"
  2154. ],
  2155. "initial": "none",
  2156. "appliesto": "allElements",
  2157. "computed": "asSpecifiedURLsAbsolute",
  2158. "order": "uniqueOrder",
  2159. "alsoAppliesTo": [
  2160. "::first-letter",
  2161. "::first-line",
  2162. "::placeholder"
  2163. ],
  2164. "status": "standard",
  2165. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-image"
  2166. },
  2167. "background-origin": {
  2168. "syntax": "<box>#",
  2169. "media": "visual",
  2170. "inherited": false,
  2171. "animationType": "discrete",
  2172. "percentages": "no",
  2173. "groups": [
  2174. "CSS Backgrounds and Borders"
  2175. ],
  2176. "initial": "padding-box",
  2177. "appliesto": "allElements",
  2178. "computed": "asSpecified",
  2179. "order": "uniqueOrder",
  2180. "alsoAppliesTo": [
  2181. "::first-letter",
  2182. "::first-line",
  2183. "::placeholder"
  2184. ],
  2185. "status": "standard",
  2186. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-origin"
  2187. },
  2188. "background-position": {
  2189. "syntax": "<bg-position>#",
  2190. "media": "visual",
  2191. "inherited": false,
  2192. "animationType": "repeatableListOfSimpleListOfLpc",
  2193. "percentages": "referToSizeOfBackgroundPositioningAreaMinusBackgroundImageSize",
  2194. "groups": [
  2195. "CSS Backgrounds and Borders"
  2196. ],
  2197. "initial": "0% 0%",
  2198. "appliesto": "allElements",
  2199. "computed": "listEachItemTwoKeywordsOriginOffsets",
  2200. "order": "uniqueOrder",
  2201. "alsoAppliesTo": [
  2202. "::first-letter",
  2203. "::first-line",
  2204. "::placeholder"
  2205. ],
  2206. "status": "standard",
  2207. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-position"
  2208. },
  2209. "background-position-x": {
  2210. "syntax": "[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#",
  2211. "media": "visual",
  2212. "inherited": false,
  2213. "animationType": "discrete",
  2214. "percentages": "referToWidthOfBackgroundPositioningAreaMinusBackgroundImageHeight",
  2215. "groups": [
  2216. "CSS Backgrounds and Borders"
  2217. ],
  2218. "initial": "left",
  2219. "appliesto": "allElements",
  2220. "computed": "listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin",
  2221. "order": "uniqueOrder",
  2222. "status": "experimental",
  2223. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-position-x"
  2224. },
  2225. "background-position-y": {
  2226. "syntax": "[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#",
  2227. "media": "visual",
  2228. "inherited": false,
  2229. "animationType": "discrete",
  2230. "percentages": "referToHeightOfBackgroundPositioningAreaMinusBackgroundImageHeight",
  2231. "groups": [
  2232. "CSS Backgrounds and Borders"
  2233. ],
  2234. "initial": "top",
  2235. "appliesto": "allElements",
  2236. "computed": "listEachItemConsistingOfAbsoluteLengthPercentageAndOrigin",
  2237. "order": "uniqueOrder",
  2238. "status": "experimental",
  2239. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-position-y"
  2240. },
  2241. "background-repeat": {
  2242. "syntax": "<repeat-style>#",
  2243. "media": "visual",
  2244. "inherited": false,
  2245. "animationType": "discrete",
  2246. "percentages": "no",
  2247. "groups": [
  2248. "CSS Backgrounds and Borders"
  2249. ],
  2250. "initial": "repeat",
  2251. "appliesto": "allElements",
  2252. "computed": "listEachItemHasTwoKeywordsOnePerDimension",
  2253. "order": "uniqueOrder",
  2254. "alsoAppliesTo": [
  2255. "::first-letter",
  2256. "::first-line",
  2257. "::placeholder"
  2258. ],
  2259. "status": "standard",
  2260. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-repeat"
  2261. },
  2262. "background-size": {
  2263. "syntax": "<bg-size>#",
  2264. "media": "visual",
  2265. "inherited": false,
  2266. "animationType": "repeatableListOfSimpleListOfLpc",
  2267. "percentages": "relativeToBackgroundPositioningArea",
  2268. "groups": [
  2269. "CSS Backgrounds and Borders"
  2270. ],
  2271. "initial": "auto auto",
  2272. "appliesto": "allElements",
  2273. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  2274. "order": "uniqueOrder",
  2275. "alsoAppliesTo": [
  2276. "::first-letter",
  2277. "::first-line",
  2278. "::placeholder"
  2279. ],
  2280. "status": "standard",
  2281. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/background-size"
  2282. },
  2283. "block-overflow": {
  2284. "syntax": "clip | ellipsis | <string>",
  2285. "media": "visual",
  2286. "inherited": true,
  2287. "animationType": "discrete",
  2288. "percentages": "no",
  2289. "groups": [
  2290. "CSS Overflow"
  2291. ],
  2292. "initial": "clip",
  2293. "appliesto": "blockContainers",
  2294. "computed": "asSpecified",
  2295. "order": "perGrammar",
  2296. "status": "experimental"
  2297. },
  2298. "block-size": {
  2299. "syntax": "<'width'>",
  2300. "media": "visual",
  2301. "inherited": false,
  2302. "animationType": "lpc",
  2303. "percentages": "blockSizeOfContainingBlock",
  2304. "groups": [
  2305. "CSS Logical Properties"
  2306. ],
  2307. "initial": "auto",
  2308. "appliesto": "sameAsWidthAndHeight",
  2309. "computed": "sameAsWidthAndHeight",
  2310. "order": "uniqueOrder",
  2311. "status": "standard",
  2312. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/block-size"
  2313. },
  2314. "border": {
  2315. "syntax": "<line-width> || <line-style> || <color>",
  2316. "media": "visual",
  2317. "inherited": false,
  2318. "animationType": [
  2319. "border-color",
  2320. "border-style",
  2321. "border-width"
  2322. ],
  2323. "percentages": "no",
  2324. "groups": [
  2325. "CSS Backgrounds and Borders"
  2326. ],
  2327. "initial": [
  2328. "border-width",
  2329. "border-style",
  2330. "border-color"
  2331. ],
  2332. "appliesto": "allElements",
  2333. "computed": [
  2334. "border-width",
  2335. "border-style",
  2336. "border-color"
  2337. ],
  2338. "order": "orderOfAppearance",
  2339. "alsoAppliesTo": [
  2340. "::first-letter"
  2341. ],
  2342. "status": "standard",
  2343. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border"
  2344. },
  2345. "border-block": {
  2346. "syntax": "<'border-top-width'> || <'border-top-style'> || <'color'>",
  2347. "media": "visual",
  2348. "inherited": false,
  2349. "animationType": "discrete",
  2350. "percentages": "no",
  2351. "groups": [
  2352. "CSS Logical Properties"
  2353. ],
  2354. "initial": [
  2355. "border-top-width",
  2356. "border-top-style",
  2357. "border-top-color"
  2358. ],
  2359. "appliesto": "allElements",
  2360. "computed": [
  2361. "border-top-width",
  2362. "border-top-style",
  2363. "border-top-color"
  2364. ],
  2365. "order": "uniqueOrder",
  2366. "status": "standard",
  2367. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block"
  2368. },
  2369. "border-block-color": {
  2370. "syntax": "<'border-top-color'>{1,2}",
  2371. "media": "visual",
  2372. "inherited": false,
  2373. "animationType": "discrete",
  2374. "percentages": "no",
  2375. "groups": [
  2376. "CSS Logical Properties"
  2377. ],
  2378. "initial": "currentcolor",
  2379. "appliesto": "allElements",
  2380. "computed": "computedColor",
  2381. "order": "uniqueOrder",
  2382. "status": "standard",
  2383. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-color"
  2384. },
  2385. "border-block-style": {
  2386. "syntax": "<'border-top-style'>",
  2387. "media": "visual",
  2388. "inherited": false,
  2389. "animationType": "discrete",
  2390. "percentages": "no",
  2391. "groups": [
  2392. "CSS Logical Properties"
  2393. ],
  2394. "initial": "none",
  2395. "appliesto": "allElements",
  2396. "computed": "asSpecified",
  2397. "order": "uniqueOrder",
  2398. "status": "standard",
  2399. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-style"
  2400. },
  2401. "border-block-width": {
  2402. "syntax": "<'border-top-width'>",
  2403. "media": "visual",
  2404. "inherited": false,
  2405. "animationType": "discrete",
  2406. "percentages": "logicalWidthOfContainingBlock",
  2407. "groups": [
  2408. "CSS Logical Properties"
  2409. ],
  2410. "initial": "medium",
  2411. "appliesto": "allElements",
  2412. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  2413. "order": "uniqueOrder",
  2414. "status": "standard",
  2415. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-width"
  2416. },
  2417. "border-block-end": {
  2418. "syntax": "<'border-top-width'> || <'border-top-style'> || <'color'>",
  2419. "media": "visual",
  2420. "inherited": false,
  2421. "animationType": [
  2422. "border-block-end-color",
  2423. "border-block-end-style",
  2424. "border-block-end-width"
  2425. ],
  2426. "percentages": "no",
  2427. "groups": [
  2428. "CSS Logical Properties"
  2429. ],
  2430. "initial": [
  2431. "border-top-width",
  2432. "border-top-style",
  2433. "border-top-color"
  2434. ],
  2435. "appliesto": "allElements",
  2436. "computed": [
  2437. "border-top-width",
  2438. "border-top-style",
  2439. "border-top-color"
  2440. ],
  2441. "order": "uniqueOrder",
  2442. "status": "standard",
  2443. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end"
  2444. },
  2445. "border-block-end-color": {
  2446. "syntax": "<'border-top-color'>",
  2447. "media": "visual",
  2448. "inherited": false,
  2449. "animationType": "color",
  2450. "percentages": "no",
  2451. "groups": [
  2452. "CSS Logical Properties"
  2453. ],
  2454. "initial": "currentcolor",
  2455. "appliesto": "allElements",
  2456. "computed": "computedColor",
  2457. "order": "uniqueOrder",
  2458. "status": "standard",
  2459. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-color"
  2460. },
  2461. "border-block-end-style": {
  2462. "syntax": "<'border-top-style'>",
  2463. "media": "visual",
  2464. "inherited": false,
  2465. "animationType": "discrete",
  2466. "percentages": "no",
  2467. "groups": [
  2468. "CSS Logical Properties"
  2469. ],
  2470. "initial": "none",
  2471. "appliesto": "allElements",
  2472. "computed": "asSpecified",
  2473. "order": "uniqueOrder",
  2474. "status": "standard",
  2475. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-style"
  2476. },
  2477. "border-block-end-width": {
  2478. "syntax": "<'border-top-width'>",
  2479. "media": "visual",
  2480. "inherited": false,
  2481. "animationType": "length",
  2482. "percentages": "logicalWidthOfContainingBlock",
  2483. "groups": [
  2484. "CSS Logical Properties"
  2485. ],
  2486. "initial": "medium",
  2487. "appliesto": "allElements",
  2488. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  2489. "order": "uniqueOrder",
  2490. "status": "standard",
  2491. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-end-width"
  2492. },
  2493. "border-block-start": {
  2494. "syntax": "<'border-top-width'> || <'border-top-style'> || <'color'>",
  2495. "media": "visual",
  2496. "inherited": false,
  2497. "animationType": [
  2498. "border-block-start-color",
  2499. "border-block-start-style",
  2500. "border-block-start-width"
  2501. ],
  2502. "percentages": "no",
  2503. "groups": [
  2504. "CSS Logical Properties"
  2505. ],
  2506. "initial": [
  2507. "border-width",
  2508. "border-style",
  2509. "color"
  2510. ],
  2511. "appliesto": "allElements",
  2512. "computed": [
  2513. "border-width",
  2514. "border-style",
  2515. "border-block-start-color"
  2516. ],
  2517. "order": "uniqueOrder",
  2518. "status": "standard",
  2519. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start"
  2520. },
  2521. "border-block-start-color": {
  2522. "syntax": "<'border-top-color'>",
  2523. "media": "visual",
  2524. "inherited": false,
  2525. "animationType": "color",
  2526. "percentages": "no",
  2527. "groups": [
  2528. "CSS Logical Properties"
  2529. ],
  2530. "initial": "currentcolor",
  2531. "appliesto": "allElements",
  2532. "computed": "computedColor",
  2533. "order": "uniqueOrder",
  2534. "status": "standard",
  2535. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-color"
  2536. },
  2537. "border-block-start-style": {
  2538. "syntax": "<'border-top-style'>",
  2539. "media": "visual",
  2540. "inherited": false,
  2541. "animationType": "discrete",
  2542. "percentages": "no",
  2543. "groups": [
  2544. "CSS Logical Properties"
  2545. ],
  2546. "initial": "none",
  2547. "appliesto": "allElements",
  2548. "computed": "asSpecified",
  2549. "order": "uniqueOrder",
  2550. "status": "standard",
  2551. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-style"
  2552. },
  2553. "border-block-start-width": {
  2554. "syntax": "<'border-top-width'>",
  2555. "media": "visual",
  2556. "inherited": false,
  2557. "animationType": "length",
  2558. "percentages": "logicalWidthOfContainingBlock",
  2559. "groups": [
  2560. "CSS Logical Properties"
  2561. ],
  2562. "initial": "medium",
  2563. "appliesto": "allElements",
  2564. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  2565. "order": "uniqueOrder",
  2566. "status": "standard",
  2567. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-block-start-width"
  2568. },
  2569. "border-bottom": {
  2570. "syntax": "<line-width> || <line-style> || <color>",
  2571. "media": "visual",
  2572. "inherited": false,
  2573. "animationType": [
  2574. "border-bottom-color",
  2575. "border-bottom-style",
  2576. "border-bottom-width"
  2577. ],
  2578. "percentages": "no",
  2579. "groups": [
  2580. "CSS Backgrounds and Borders"
  2581. ],
  2582. "initial": [
  2583. "border-bottom-width",
  2584. "border-bottom-style",
  2585. "border-bottom-color"
  2586. ],
  2587. "appliesto": "allElements",
  2588. "computed": [
  2589. "border-bottom-width",
  2590. "border-bottom-style",
  2591. "border-bottom-color"
  2592. ],
  2593. "order": "orderOfAppearance",
  2594. "alsoAppliesTo": [
  2595. "::first-letter"
  2596. ],
  2597. "status": "standard",
  2598. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom"
  2599. },
  2600. "border-bottom-color": {
  2601. "syntax": "<'border-top-color'>",
  2602. "media": "visual",
  2603. "inherited": false,
  2604. "animationType": "color",
  2605. "percentages": "no",
  2606. "groups": [
  2607. "CSS Backgrounds and Borders"
  2608. ],
  2609. "initial": "currentcolor",
  2610. "appliesto": "allElements",
  2611. "computed": "computedColor",
  2612. "order": "uniqueOrder",
  2613. "alsoAppliesTo": [
  2614. "::first-letter"
  2615. ],
  2616. "status": "standard",
  2617. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-color"
  2618. },
  2619. "border-bottom-left-radius": {
  2620. "syntax": "<length-percentage>{1,2}",
  2621. "media": "visual",
  2622. "inherited": false,
  2623. "animationType": "lpc",
  2624. "percentages": "referToDimensionOfBorderBox",
  2625. "groups": [
  2626. "CSS Backgrounds and Borders"
  2627. ],
  2628. "initial": "0",
  2629. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  2630. "computed": "twoAbsoluteLengthOrPercentages",
  2631. "order": "uniqueOrder",
  2632. "alsoAppliesTo": [
  2633. "::first-letter"
  2634. ],
  2635. "status": "standard",
  2636. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-left-radius"
  2637. },
  2638. "border-bottom-right-radius": {
  2639. "syntax": "<length-percentage>{1,2}",
  2640. "media": "visual",
  2641. "inherited": false,
  2642. "animationType": "lpc",
  2643. "percentages": "referToDimensionOfBorderBox",
  2644. "groups": [
  2645. "CSS Backgrounds and Borders"
  2646. ],
  2647. "initial": "0",
  2648. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  2649. "computed": "twoAbsoluteLengthOrPercentages",
  2650. "order": "uniqueOrder",
  2651. "alsoAppliesTo": [
  2652. "::first-letter"
  2653. ],
  2654. "status": "standard",
  2655. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-right-radius"
  2656. },
  2657. "border-bottom-style": {
  2658. "syntax": "<line-style>",
  2659. "media": "visual",
  2660. "inherited": false,
  2661. "animationType": "discrete",
  2662. "percentages": "no",
  2663. "groups": [
  2664. "CSS Backgrounds and Borders"
  2665. ],
  2666. "initial": "none",
  2667. "appliesto": "allElements",
  2668. "computed": "asSpecified",
  2669. "order": "uniqueOrder",
  2670. "alsoAppliesTo": [
  2671. "::first-letter"
  2672. ],
  2673. "status": "standard",
  2674. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-style"
  2675. },
  2676. "border-bottom-width": {
  2677. "syntax": "<line-width>",
  2678. "media": "visual",
  2679. "inherited": false,
  2680. "animationType": "length",
  2681. "percentages": "no",
  2682. "groups": [
  2683. "CSS Backgrounds and Borders"
  2684. ],
  2685. "initial": "medium",
  2686. "appliesto": "allElements",
  2687. "computed": "absoluteLengthOr0IfBorderBottomStyleNoneOrHidden",
  2688. "order": "uniqueOrder",
  2689. "alsoAppliesTo": [
  2690. "::first-letter"
  2691. ],
  2692. "status": "standard",
  2693. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-bottom-width"
  2694. },
  2695. "border-collapse": {
  2696. "syntax": "collapse | separate",
  2697. "media": "visual",
  2698. "inherited": true,
  2699. "animationType": "discrete",
  2700. "percentages": "no",
  2701. "groups": [
  2702. "CSS Table"
  2703. ],
  2704. "initial": "separate",
  2705. "appliesto": "tableElements",
  2706. "computed": "asSpecified",
  2707. "order": "uniqueOrder",
  2708. "status": "standard",
  2709. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-collapse"
  2710. },
  2711. "border-color": {
  2712. "syntax": "<color>{1,4}",
  2713. "media": "visual",
  2714. "inherited": false,
  2715. "animationType": [
  2716. "border-bottom-color",
  2717. "border-left-color",
  2718. "border-right-color",
  2719. "border-top-color"
  2720. ],
  2721. "percentages": "no",
  2722. "groups": [
  2723. "CSS Backgrounds and Borders"
  2724. ],
  2725. "initial": [
  2726. "border-top-color",
  2727. "border-right-color",
  2728. "border-bottom-color",
  2729. "border-left-color"
  2730. ],
  2731. "appliesto": "allElements",
  2732. "computed": [
  2733. "border-bottom-color",
  2734. "border-left-color",
  2735. "border-right-color",
  2736. "border-top-color"
  2737. ],
  2738. "order": "uniqueOrder",
  2739. "alsoAppliesTo": [
  2740. "::first-letter"
  2741. ],
  2742. "status": "standard",
  2743. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-color"
  2744. },
  2745. "border-end-end-radius": {
  2746. "syntax": "<length-percentage>{1,2}",
  2747. "media": "visual",
  2748. "inherited": false,
  2749. "animationType": "lpc",
  2750. "percentages": "referToDimensionOfBorderBox",
  2751. "groups": [
  2752. "CSS Logical Properties"
  2753. ],
  2754. "initial": "0",
  2755. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  2756. "computed": "twoAbsoluteLengthOrPercentages",
  2757. "order": "uniqueOrder",
  2758. "alsoAppliesTo": [
  2759. "::first-letter"
  2760. ],
  2761. "status": "standard",
  2762. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius"
  2763. },
  2764. "border-end-start-radius": {
  2765. "syntax": "<length-percentage>{1,2}",
  2766. "media": "visual",
  2767. "inherited": false,
  2768. "animationType": "lpc",
  2769. "percentages": "referToDimensionOfBorderBox",
  2770. "groups": [
  2771. "CSS Logical Properties"
  2772. ],
  2773. "initial": "0",
  2774. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  2775. "computed": "twoAbsoluteLengthOrPercentages",
  2776. "order": "uniqueOrder",
  2777. "alsoAppliesTo": [
  2778. "::first-letter"
  2779. ],
  2780. "status": "standard",
  2781. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius"
  2782. },
  2783. "border-image": {
  2784. "syntax": "<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>",
  2785. "media": "visual",
  2786. "inherited": false,
  2787. "animationType": "discrete",
  2788. "percentages": [
  2789. "border-image-slice",
  2790. "border-image-width"
  2791. ],
  2792. "groups": [
  2793. "CSS Backgrounds and Borders"
  2794. ],
  2795. "initial": [
  2796. "border-image-source",
  2797. "border-image-slice",
  2798. "border-image-width",
  2799. "border-image-outset",
  2800. "border-image-repeat"
  2801. ],
  2802. "appliesto": "allElementsExceptTableElementsWhenCollapse",
  2803. "computed": [
  2804. "border-image-outset",
  2805. "border-image-repeat",
  2806. "border-image-slice",
  2807. "border-image-source",
  2808. "border-image-width"
  2809. ],
  2810. "order": "uniqueOrder",
  2811. "alsoAppliesTo": [
  2812. "::first-letter"
  2813. ],
  2814. "status": "standard",
  2815. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image"
  2816. },
  2817. "border-image-outset": {
  2818. "syntax": "[ <length> | <number> ]{1,4}",
  2819. "media": "visual",
  2820. "inherited": false,
  2821. "animationType": "byComputedValueType",
  2822. "percentages": "no",
  2823. "groups": [
  2824. "CSS Backgrounds and Borders"
  2825. ],
  2826. "initial": "0",
  2827. "appliesto": "allElementsExceptTableElementsWhenCollapse",
  2828. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  2829. "order": "uniqueOrder",
  2830. "alsoAppliesTo": [
  2831. "::first-letter"
  2832. ],
  2833. "status": "standard",
  2834. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-outset"
  2835. },
  2836. "border-image-repeat": {
  2837. "syntax": "[ stretch | repeat | round | space ]{1,2}",
  2838. "media": "visual",
  2839. "inherited": false,
  2840. "animationType": "discrete",
  2841. "percentages": "no",
  2842. "groups": [
  2843. "CSS Backgrounds and Borders"
  2844. ],
  2845. "initial": "stretch",
  2846. "appliesto": "allElementsExceptTableElementsWhenCollapse",
  2847. "computed": "asSpecified",
  2848. "order": "uniqueOrder",
  2849. "alsoAppliesTo": [
  2850. "::first-letter"
  2851. ],
  2852. "status": "standard",
  2853. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-repeat"
  2854. },
  2855. "border-image-slice": {
  2856. "syntax": "<number-percentage>{1,4} && fill?",
  2857. "media": "visual",
  2858. "inherited": false,
  2859. "animationType": "byComputedValueType",
  2860. "percentages": "referToSizeOfBorderImage",
  2861. "groups": [
  2862. "CSS Backgrounds and Borders"
  2863. ],
  2864. "initial": "100%",
  2865. "appliesto": "allElementsExceptTableElementsWhenCollapse",
  2866. "computed": "oneToFourPercentagesOrAbsoluteLengthsPlusFill",
  2867. "order": "percentagesOrLengthsFollowedByFill",
  2868. "alsoAppliesTo": [
  2869. "::first-letter"
  2870. ],
  2871. "status": "standard",
  2872. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-slice"
  2873. },
  2874. "border-image-source": {
  2875. "syntax": "none | <image>",
  2876. "media": "visual",
  2877. "inherited": false,
  2878. "animationType": "discrete",
  2879. "percentages": "no",
  2880. "groups": [
  2881. "CSS Backgrounds and Borders"
  2882. ],
  2883. "initial": "none",
  2884. "appliesto": "allElementsExceptTableElementsWhenCollapse",
  2885. "computed": "noneOrImageWithAbsoluteURI",
  2886. "order": "uniqueOrder",
  2887. "alsoAppliesTo": [
  2888. "::first-letter"
  2889. ],
  2890. "status": "standard",
  2891. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-source"
  2892. },
  2893. "border-image-width": {
  2894. "syntax": "[ <length-percentage> | <number> | auto ]{1,4}",
  2895. "media": "visual",
  2896. "inherited": false,
  2897. "animationType": "byComputedValueType",
  2898. "percentages": "referToWidthOrHeightOfBorderImageArea",
  2899. "groups": [
  2900. "CSS Backgrounds and Borders"
  2901. ],
  2902. "initial": "1",
  2903. "appliesto": "allElementsExceptTableElementsWhenCollapse",
  2904. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  2905. "order": "uniqueOrder",
  2906. "alsoAppliesTo": [
  2907. "::first-letter"
  2908. ],
  2909. "status": "standard",
  2910. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-image-width"
  2911. },
  2912. "border-inline": {
  2913. "syntax": "<'border-top-width'> || <'border-top-style'> || <'color'>",
  2914. "media": "visual",
  2915. "inherited": false,
  2916. "animationType": "discrete",
  2917. "percentages": "no",
  2918. "groups": [
  2919. "CSS Logical Properties"
  2920. ],
  2921. "initial": [
  2922. "border-top-width",
  2923. "border-top-style",
  2924. "border-top-color"
  2925. ],
  2926. "appliesto": "allElements",
  2927. "computed": [
  2928. "border-top-width",
  2929. "border-top-style",
  2930. "border-top-color"
  2931. ],
  2932. "order": "uniqueOrder",
  2933. "status": "standard",
  2934. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline"
  2935. },
  2936. "border-inline-end": {
  2937. "syntax": "<'border-top-width'> || <'border-top-style'> || <'color'>",
  2938. "media": "visual",
  2939. "inherited": false,
  2940. "animationType": [
  2941. "border-inline-end-color",
  2942. "border-inline-end-style",
  2943. "border-inline-end-width"
  2944. ],
  2945. "percentages": "no",
  2946. "groups": [
  2947. "CSS Logical Properties"
  2948. ],
  2949. "initial": [
  2950. "border-width",
  2951. "border-style",
  2952. "color"
  2953. ],
  2954. "appliesto": "allElements",
  2955. "computed": [
  2956. "border-width",
  2957. "border-style",
  2958. "border-inline-end-color"
  2959. ],
  2960. "order": "uniqueOrder",
  2961. "status": "standard",
  2962. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end"
  2963. },
  2964. "border-inline-color": {
  2965. "syntax": "<'border-top-color'>{1,2}",
  2966. "media": "visual",
  2967. "inherited": false,
  2968. "animationType": "discrete",
  2969. "percentages": "no",
  2970. "groups": [
  2971. "CSS Logical Properties"
  2972. ],
  2973. "initial": "currentcolor",
  2974. "appliesto": "allElements",
  2975. "computed": "computedColor",
  2976. "order": "uniqueOrder",
  2977. "status": "standard",
  2978. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-color"
  2979. },
  2980. "border-inline-style": {
  2981. "syntax": "<'border-top-style'>",
  2982. "media": "visual",
  2983. "inherited": false,
  2984. "animationType": "discrete",
  2985. "percentages": "no",
  2986. "groups": [
  2987. "CSS Logical Properties"
  2988. ],
  2989. "initial": "none",
  2990. "appliesto": "allElements",
  2991. "computed": "asSpecified",
  2992. "order": "uniqueOrder",
  2993. "status": "standard",
  2994. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-style"
  2995. },
  2996. "border-inline-width": {
  2997. "syntax": "<'border-top-width'>",
  2998. "media": "visual",
  2999. "inherited": false,
  3000. "animationType": "discrete",
  3001. "percentages": "logicalWidthOfContainingBlock",
  3002. "groups": [
  3003. "CSS Logical Properties"
  3004. ],
  3005. "initial": "medium",
  3006. "appliesto": "allElements",
  3007. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  3008. "order": "uniqueOrder",
  3009. "status": "standard",
  3010. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-width"
  3011. },
  3012. "border-inline-end-color": {
  3013. "syntax": "<'border-top-color'>",
  3014. "media": "visual",
  3015. "inherited": false,
  3016. "animationType": "color",
  3017. "percentages": "no",
  3018. "groups": [
  3019. "CSS Logical Properties"
  3020. ],
  3021. "initial": "currentcolor",
  3022. "appliesto": "allElements",
  3023. "computed": "computedColor",
  3024. "order": "uniqueOrder",
  3025. "status": "standard",
  3026. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-color"
  3027. },
  3028. "border-inline-end-style": {
  3029. "syntax": "<'border-top-style'>",
  3030. "media": "visual",
  3031. "inherited": false,
  3032. "animationType": "discrete",
  3033. "percentages": "no",
  3034. "groups": [
  3035. "CSS Logical Properties"
  3036. ],
  3037. "initial": "none",
  3038. "appliesto": "allElements",
  3039. "computed": "asSpecified",
  3040. "order": "uniqueOrder",
  3041. "status": "standard",
  3042. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-style"
  3043. },
  3044. "border-inline-end-width": {
  3045. "syntax": "<'border-top-width'>",
  3046. "media": "visual",
  3047. "inherited": false,
  3048. "animationType": "length",
  3049. "percentages": "logicalWidthOfContainingBlock",
  3050. "groups": [
  3051. "CSS Logical Properties"
  3052. ],
  3053. "initial": "medium",
  3054. "appliesto": "allElements",
  3055. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  3056. "order": "uniqueOrder",
  3057. "status": "standard",
  3058. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-end-width"
  3059. },
  3060. "border-inline-start": {
  3061. "syntax": "<'border-top-width'> || <'border-top-style'> || <'color'>",
  3062. "media": "visual",
  3063. "inherited": false,
  3064. "animationType": [
  3065. "border-inline-start-color",
  3066. "border-inline-start-style",
  3067. "border-inline-start-width"
  3068. ],
  3069. "percentages": "no",
  3070. "groups": [
  3071. "CSS Logical Properties"
  3072. ],
  3073. "initial": [
  3074. "border-width",
  3075. "border-style",
  3076. "color"
  3077. ],
  3078. "appliesto": "allElements",
  3079. "computed": [
  3080. "border-width",
  3081. "border-style",
  3082. "border-inline-start-color"
  3083. ],
  3084. "order": "uniqueOrder",
  3085. "status": "standard",
  3086. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start"
  3087. },
  3088. "border-inline-start-color": {
  3089. "syntax": "<'border-top-color'>",
  3090. "media": "visual",
  3091. "inherited": false,
  3092. "animationType": "color",
  3093. "percentages": "no",
  3094. "groups": [
  3095. "CSS Logical Properties"
  3096. ],
  3097. "initial": "currentcolor",
  3098. "appliesto": "allElements",
  3099. "computed": "computedColor",
  3100. "order": "uniqueOrder",
  3101. "status": "standard",
  3102. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-color"
  3103. },
  3104. "border-inline-start-style": {
  3105. "syntax": "<'border-top-style'>",
  3106. "media": "visual",
  3107. "inherited": false,
  3108. "animationType": "discrete",
  3109. "percentages": "no",
  3110. "groups": [
  3111. "CSS Logical Properties"
  3112. ],
  3113. "initial": "none",
  3114. "appliesto": "allElements",
  3115. "computed": "asSpecified",
  3116. "order": "uniqueOrder",
  3117. "status": "standard",
  3118. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-style"
  3119. },
  3120. "border-inline-start-width": {
  3121. "syntax": "<'border-top-width'>",
  3122. "media": "visual",
  3123. "inherited": false,
  3124. "animationType": "length",
  3125. "percentages": "logicalWidthOfContainingBlock",
  3126. "groups": [
  3127. "CSS Logical Properties"
  3128. ],
  3129. "initial": "medium",
  3130. "appliesto": "allElements",
  3131. "computed": "absoluteLengthZeroIfBorderStyleNoneOrHidden",
  3132. "order": "uniqueOrder",
  3133. "status": "standard",
  3134. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-inline-start-width"
  3135. },
  3136. "border-left": {
  3137. "syntax": "<line-width> || <line-style> || <color>",
  3138. "media": "visual",
  3139. "inherited": false,
  3140. "animationType": [
  3141. "border-left-color",
  3142. "border-left-style",
  3143. "border-left-width"
  3144. ],
  3145. "percentages": "no",
  3146. "groups": [
  3147. "CSS Backgrounds and Borders"
  3148. ],
  3149. "initial": [
  3150. "border-left-width",
  3151. "border-left-style",
  3152. "border-left-color"
  3153. ],
  3154. "appliesto": "allElements",
  3155. "computed": [
  3156. "border-left-width",
  3157. "border-left-style",
  3158. "border-left-color"
  3159. ],
  3160. "order": "orderOfAppearance",
  3161. "alsoAppliesTo": [
  3162. "::first-letter"
  3163. ],
  3164. "status": "standard",
  3165. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left"
  3166. },
  3167. "border-left-color": {
  3168. "syntax": "<color>",
  3169. "media": "visual",
  3170. "inherited": false,
  3171. "animationType": "color",
  3172. "percentages": "no",
  3173. "groups": [
  3174. "CSS Backgrounds and Borders"
  3175. ],
  3176. "initial": "currentcolor",
  3177. "appliesto": "allElements",
  3178. "computed": "computedColor",
  3179. "order": "uniqueOrder",
  3180. "alsoAppliesTo": [
  3181. "::first-letter"
  3182. ],
  3183. "status": "standard",
  3184. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left-color"
  3185. },
  3186. "border-left-style": {
  3187. "syntax": "<line-style>",
  3188. "media": "visual",
  3189. "inherited": false,
  3190. "animationType": "discrete",
  3191. "percentages": "no",
  3192. "groups": [
  3193. "CSS Backgrounds and Borders"
  3194. ],
  3195. "initial": "none",
  3196. "appliesto": "allElements",
  3197. "computed": "asSpecified",
  3198. "order": "uniqueOrder",
  3199. "alsoAppliesTo": [
  3200. "::first-letter"
  3201. ],
  3202. "status": "standard",
  3203. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left-style"
  3204. },
  3205. "border-left-width": {
  3206. "syntax": "<line-width>",
  3207. "media": "visual",
  3208. "inherited": false,
  3209. "animationType": "length",
  3210. "percentages": "no",
  3211. "groups": [
  3212. "CSS Backgrounds and Borders"
  3213. ],
  3214. "initial": "medium",
  3215. "appliesto": "allElements",
  3216. "computed": "absoluteLengthOr0IfBorderLeftStyleNoneOrHidden",
  3217. "order": "uniqueOrder",
  3218. "alsoAppliesTo": [
  3219. "::first-letter"
  3220. ],
  3221. "status": "standard",
  3222. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-left-width"
  3223. },
  3224. "border-radius": {
  3225. "syntax": "<length-percentage>{1,4} [ / <length-percentage>{1,4} ]?",
  3226. "media": "visual",
  3227. "inherited": false,
  3228. "animationType": [
  3229. "border-top-left-radius",
  3230. "border-top-right-radius",
  3231. "border-bottom-right-radius",
  3232. "border-bottom-left-radius"
  3233. ],
  3234. "percentages": "referToDimensionOfBorderBox",
  3235. "groups": [
  3236. "CSS Backgrounds and Borders"
  3237. ],
  3238. "initial": [
  3239. "border-top-left-radius",
  3240. "border-top-right-radius",
  3241. "border-bottom-right-radius",
  3242. "border-bottom-left-radius"
  3243. ],
  3244. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  3245. "computed": [
  3246. "border-bottom-left-radius",
  3247. "border-bottom-right-radius",
  3248. "border-top-left-radius",
  3249. "border-top-right-radius"
  3250. ],
  3251. "order": "uniqueOrder",
  3252. "alsoAppliesTo": [
  3253. "::first-letter"
  3254. ],
  3255. "status": "standard",
  3256. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-radius"
  3257. },
  3258. "border-right": {
  3259. "syntax": "<line-width> || <line-style> || <color>",
  3260. "media": "visual",
  3261. "inherited": false,
  3262. "animationType": [
  3263. "border-right-color",
  3264. "border-right-style",
  3265. "border-right-width"
  3266. ],
  3267. "percentages": "no",
  3268. "groups": [
  3269. "CSS Backgrounds and Borders"
  3270. ],
  3271. "initial": [
  3272. "border-right-width",
  3273. "border-right-style",
  3274. "border-right-color"
  3275. ],
  3276. "appliesto": "allElements",
  3277. "computed": [
  3278. "border-right-width",
  3279. "border-right-style",
  3280. "border-right-color"
  3281. ],
  3282. "order": "orderOfAppearance",
  3283. "alsoAppliesTo": [
  3284. "::first-letter"
  3285. ],
  3286. "status": "standard",
  3287. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right"
  3288. },
  3289. "border-right-color": {
  3290. "syntax": "<color>",
  3291. "media": "visual",
  3292. "inherited": false,
  3293. "animationType": "color",
  3294. "percentages": "no",
  3295. "groups": [
  3296. "CSS Backgrounds and Borders"
  3297. ],
  3298. "initial": "currentcolor",
  3299. "appliesto": "allElements",
  3300. "computed": "computedColor",
  3301. "order": "uniqueOrder",
  3302. "alsoAppliesTo": [
  3303. "::first-letter"
  3304. ],
  3305. "status": "standard",
  3306. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right-color"
  3307. },
  3308. "border-right-style": {
  3309. "syntax": "<line-style>",
  3310. "media": "visual",
  3311. "inherited": false,
  3312. "animationType": "discrete",
  3313. "percentages": "no",
  3314. "groups": [
  3315. "CSS Backgrounds and Borders"
  3316. ],
  3317. "initial": "none",
  3318. "appliesto": "allElements",
  3319. "computed": "asSpecified",
  3320. "order": "uniqueOrder",
  3321. "alsoAppliesTo": [
  3322. "::first-letter"
  3323. ],
  3324. "status": "standard",
  3325. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right-style"
  3326. },
  3327. "border-right-width": {
  3328. "syntax": "<line-width>",
  3329. "media": "visual",
  3330. "inherited": false,
  3331. "animationType": "length",
  3332. "percentages": "no",
  3333. "groups": [
  3334. "CSS Backgrounds and Borders"
  3335. ],
  3336. "initial": "medium",
  3337. "appliesto": "allElements",
  3338. "computed": "absoluteLengthOr0IfBorderRightStyleNoneOrHidden",
  3339. "order": "uniqueOrder",
  3340. "alsoAppliesTo": [
  3341. "::first-letter"
  3342. ],
  3343. "status": "standard",
  3344. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-right-width"
  3345. },
  3346. "border-spacing": {
  3347. "syntax": "<length> <length>?",
  3348. "media": "visual",
  3349. "inherited": true,
  3350. "animationType": "discrete",
  3351. "percentages": "no",
  3352. "groups": [
  3353. "CSS Table"
  3354. ],
  3355. "initial": "0",
  3356. "appliesto": "tableElements",
  3357. "computed": "twoAbsoluteLengths",
  3358. "order": "uniqueOrder",
  3359. "status": "standard",
  3360. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-spacing"
  3361. },
  3362. "border-start-end-radius": {
  3363. "syntax": "<length-percentage>{1,2}",
  3364. "media": "visual",
  3365. "inherited": false,
  3366. "animationType": "lpc",
  3367. "percentages": "referToDimensionOfBorderBox",
  3368. "groups": [
  3369. "CSS Logical Properties"
  3370. ],
  3371. "initial": "0",
  3372. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  3373. "computed": "twoAbsoluteLengthOrPercentages",
  3374. "order": "uniqueOrder",
  3375. "alsoAppliesTo": [
  3376. "::first-letter"
  3377. ],
  3378. "status": "standard",
  3379. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius"
  3380. },
  3381. "border-start-start-radius": {
  3382. "syntax": "<length-percentage>{1,2}",
  3383. "media": "visual",
  3384. "inherited": false,
  3385. "animationType": "lpc",
  3386. "percentages": "referToDimensionOfBorderBox",
  3387. "groups": [
  3388. "CSS Logical Properties"
  3389. ],
  3390. "initial": "0",
  3391. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  3392. "computed": "twoAbsoluteLengthOrPercentages",
  3393. "order": "uniqueOrder",
  3394. "alsoAppliesTo": [
  3395. "::first-letter"
  3396. ],
  3397. "status": "standard",
  3398. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius"
  3399. },
  3400. "border-style": {
  3401. "syntax": "<line-style>{1,4}",
  3402. "media": "visual",
  3403. "inherited": false,
  3404. "animationType": "discrete",
  3405. "percentages": "no",
  3406. "groups": [
  3407. "CSS Backgrounds and Borders"
  3408. ],
  3409. "initial": [
  3410. "border-top-style",
  3411. "border-right-style",
  3412. "border-bottom-style",
  3413. "border-left-style"
  3414. ],
  3415. "appliesto": "allElements",
  3416. "computed": [
  3417. "border-bottom-style",
  3418. "border-left-style",
  3419. "border-right-style",
  3420. "border-top-style"
  3421. ],
  3422. "order": "uniqueOrder",
  3423. "alsoAppliesTo": [
  3424. "::first-letter"
  3425. ],
  3426. "status": "standard",
  3427. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-style"
  3428. },
  3429. "border-top": {
  3430. "syntax": "<line-width> || <line-style> || <color>",
  3431. "media": "visual",
  3432. "inherited": false,
  3433. "animationType": [
  3434. "border-top-color",
  3435. "border-top-style",
  3436. "border-top-width"
  3437. ],
  3438. "percentages": "no",
  3439. "groups": [
  3440. "CSS Backgrounds and Borders"
  3441. ],
  3442. "initial": [
  3443. "border-top-width",
  3444. "border-top-style",
  3445. "border-top-color"
  3446. ],
  3447. "appliesto": "allElements",
  3448. "computed": [
  3449. "border-top-width",
  3450. "border-top-style",
  3451. "border-top-color"
  3452. ],
  3453. "order": "orderOfAppearance",
  3454. "alsoAppliesTo": [
  3455. "::first-letter"
  3456. ],
  3457. "status": "standard",
  3458. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top"
  3459. },
  3460. "border-top-color": {
  3461. "syntax": "<color>",
  3462. "media": "visual",
  3463. "inherited": false,
  3464. "animationType": "color",
  3465. "percentages": "no",
  3466. "groups": [
  3467. "CSS Backgrounds and Borders"
  3468. ],
  3469. "initial": "currentcolor",
  3470. "appliesto": "allElements",
  3471. "computed": "computedColor",
  3472. "order": "uniqueOrder",
  3473. "alsoAppliesTo": [
  3474. "::first-letter"
  3475. ],
  3476. "status": "standard",
  3477. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-color"
  3478. },
  3479. "border-top-left-radius": {
  3480. "syntax": "<length-percentage>{1,2}",
  3481. "media": "visual",
  3482. "inherited": false,
  3483. "animationType": "lpc",
  3484. "percentages": "referToDimensionOfBorderBox",
  3485. "groups": [
  3486. "CSS Backgrounds and Borders"
  3487. ],
  3488. "initial": "0",
  3489. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  3490. "computed": "twoAbsoluteLengthOrPercentages",
  3491. "order": "uniqueOrder",
  3492. "alsoAppliesTo": [
  3493. "::first-letter"
  3494. ],
  3495. "status": "standard",
  3496. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-left-radius"
  3497. },
  3498. "border-top-right-radius": {
  3499. "syntax": "<length-percentage>{1,2}",
  3500. "media": "visual",
  3501. "inherited": false,
  3502. "animationType": "lpc",
  3503. "percentages": "referToDimensionOfBorderBox",
  3504. "groups": [
  3505. "CSS Backgrounds and Borders"
  3506. ],
  3507. "initial": "0",
  3508. "appliesto": "allElementsUAsNotRequiredWhenCollapse",
  3509. "computed": "twoAbsoluteLengthOrPercentages",
  3510. "order": "uniqueOrder",
  3511. "alsoAppliesTo": [
  3512. "::first-letter"
  3513. ],
  3514. "status": "standard",
  3515. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-right-radius"
  3516. },
  3517. "border-top-style": {
  3518. "syntax": "<line-style>",
  3519. "media": "visual",
  3520. "inherited": false,
  3521. "animationType": "discrete",
  3522. "percentages": "no",
  3523. "groups": [
  3524. "CSS Backgrounds and Borders"
  3525. ],
  3526. "initial": "none",
  3527. "appliesto": "allElements",
  3528. "computed": "asSpecified",
  3529. "order": "uniqueOrder",
  3530. "alsoAppliesTo": [
  3531. "::first-letter"
  3532. ],
  3533. "status": "standard",
  3534. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-style"
  3535. },
  3536. "border-top-width": {
  3537. "syntax": "<line-width>",
  3538. "media": "visual",
  3539. "inherited": false,
  3540. "animationType": "length",
  3541. "percentages": "no",
  3542. "groups": [
  3543. "CSS Backgrounds and Borders"
  3544. ],
  3545. "initial": "medium",
  3546. "appliesto": "allElements",
  3547. "computed": "absoluteLengthOr0IfBorderTopStyleNoneOrHidden",
  3548. "order": "uniqueOrder",
  3549. "alsoAppliesTo": [
  3550. "::first-letter"
  3551. ],
  3552. "status": "standard",
  3553. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-top-width"
  3554. },
  3555. "border-width": {
  3556. "syntax": "<line-width>{1,4}",
  3557. "media": "visual",
  3558. "inherited": false,
  3559. "animationType": [
  3560. "border-bottom-width",
  3561. "border-left-width",
  3562. "border-right-width",
  3563. "border-top-width"
  3564. ],
  3565. "percentages": "no",
  3566. "groups": [
  3567. "CSS Backgrounds and Borders"
  3568. ],
  3569. "initial": [
  3570. "border-top-width",
  3571. "border-right-width",
  3572. "border-bottom-width",
  3573. "border-left-width"
  3574. ],
  3575. "appliesto": "allElements",
  3576. "computed": [
  3577. "border-bottom-width",
  3578. "border-left-width",
  3579. "border-right-width",
  3580. "border-top-width"
  3581. ],
  3582. "order": "uniqueOrder",
  3583. "alsoAppliesTo": [
  3584. "::first-letter"
  3585. ],
  3586. "status": "standard",
  3587. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/border-width"
  3588. },
  3589. "bottom": {
  3590. "syntax": "<length> | <percentage> | auto",
  3591. "media": "visual",
  3592. "inherited": false,
  3593. "animationType": "lpc",
  3594. "percentages": "referToContainingBlockHeight",
  3595. "groups": [
  3596. "CSS Positioning"
  3597. ],
  3598. "initial": "auto",
  3599. "appliesto": "positionedElements",
  3600. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  3601. "order": "uniqueOrder",
  3602. "status": "standard",
  3603. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/bottom"
  3604. },
  3605. "box-align": {
  3606. "syntax": "start | center | end | baseline | stretch",
  3607. "media": "visual",
  3608. "inherited": false,
  3609. "animationType": "discrete",
  3610. "percentages": "no",
  3611. "groups": [
  3612. "Mozilla Extensions",
  3613. "WebKit Extensions"
  3614. ],
  3615. "initial": "stretch",
  3616. "appliesto": "elementsWithDisplayBoxOrInlineBox",
  3617. "computed": "asSpecified",
  3618. "order": "uniqueOrder",
  3619. "status": "nonstandard",
  3620. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-align"
  3621. },
  3622. "box-decoration-break": {
  3623. "syntax": "slice | clone",
  3624. "media": "visual",
  3625. "inherited": false,
  3626. "animationType": "discrete",
  3627. "percentages": "no",
  3628. "groups": [
  3629. "CSS Fragmentation"
  3630. ],
  3631. "initial": "slice",
  3632. "appliesto": "allElements",
  3633. "computed": "asSpecified",
  3634. "order": "uniqueOrder",
  3635. "status": "standard",
  3636. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-decoration-break"
  3637. },
  3638. "box-direction": {
  3639. "syntax": "normal | reverse | inherit",
  3640. "media": "visual",
  3641. "inherited": false,
  3642. "animationType": "discrete",
  3643. "percentages": "no",
  3644. "groups": [
  3645. "Mozilla Extensions",
  3646. "WebKit Extensions"
  3647. ],
  3648. "initial": "normal",
  3649. "appliesto": "elementsWithDisplayBoxOrInlineBox",
  3650. "computed": "asSpecified",
  3651. "order": "uniqueOrder",
  3652. "status": "nonstandard",
  3653. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-direction"
  3654. },
  3655. "box-flex": {
  3656. "syntax": "<number>",
  3657. "media": "visual",
  3658. "inherited": false,
  3659. "animationType": "discrete",
  3660. "percentages": "no",
  3661. "groups": [
  3662. "Mozilla Extensions",
  3663. "WebKit Extensions"
  3664. ],
  3665. "initial": "0",
  3666. "appliesto": "directChildrenOfElementsWithDisplayMozBoxMozInlineBox",
  3667. "computed": "asSpecified",
  3668. "order": "uniqueOrder",
  3669. "status": "nonstandard",
  3670. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-flex"
  3671. },
  3672. "box-flex-group": {
  3673. "syntax": "<integer>",
  3674. "media": "visual",
  3675. "inherited": false,
  3676. "animationType": "discrete",
  3677. "percentages": "no",
  3678. "groups": [
  3679. "Mozilla Extensions",
  3680. "WebKit Extensions"
  3681. ],
  3682. "initial": "1",
  3683. "appliesto": "inFlowChildrenOfBoxElements",
  3684. "computed": "asSpecified",
  3685. "order": "uniqueOrder",
  3686. "status": "nonstandard",
  3687. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-flex-group"
  3688. },
  3689. "box-lines": {
  3690. "syntax": "single | multiple",
  3691. "media": "visual",
  3692. "inherited": false,
  3693. "animationType": "discrete",
  3694. "percentages": "no",
  3695. "groups": [
  3696. "Mozilla Extensions",
  3697. "WebKit Extensions"
  3698. ],
  3699. "initial": "single",
  3700. "appliesto": "boxElements",
  3701. "computed": "asSpecified",
  3702. "order": "uniqueOrder",
  3703. "status": "nonstandard",
  3704. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-lines"
  3705. },
  3706. "box-ordinal-group": {
  3707. "syntax": "<integer>",
  3708. "media": "visual",
  3709. "inherited": false,
  3710. "animationType": "discrete",
  3711. "percentages": "no",
  3712. "groups": [
  3713. "Mozilla Extensions",
  3714. "WebKit Extensions"
  3715. ],
  3716. "initial": "1",
  3717. "appliesto": "childrenOfBoxElements",
  3718. "computed": "asSpecified",
  3719. "order": "uniqueOrder",
  3720. "status": "nonstandard",
  3721. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-ordinal-group"
  3722. },
  3723. "box-orient": {
  3724. "syntax": "horizontal | vertical | inline-axis | block-axis | inherit",
  3725. "media": "visual",
  3726. "inherited": false,
  3727. "animationType": "discrete",
  3728. "percentages": "no",
  3729. "groups": [
  3730. "Mozilla Extensions",
  3731. "WebKit Extensions"
  3732. ],
  3733. "initial": "inlineAxisHorizontalInXUL",
  3734. "appliesto": "elementsWithDisplayBoxOrInlineBox",
  3735. "computed": "asSpecified",
  3736. "order": "uniqueOrder",
  3737. "status": "nonstandard",
  3738. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-orient"
  3739. },
  3740. "box-pack": {
  3741. "syntax": "start | center | end | justify",
  3742. "media": "visual",
  3743. "inherited": false,
  3744. "animationType": "discrete",
  3745. "percentages": "no",
  3746. "groups": [
  3747. "Mozilla Extensions",
  3748. "WebKit Extensions"
  3749. ],
  3750. "initial": "start",
  3751. "appliesto": "elementsWithDisplayMozBoxMozInlineBox",
  3752. "computed": "asSpecified",
  3753. "order": "uniqueOrder",
  3754. "status": "nonstandard",
  3755. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-pack"
  3756. },
  3757. "box-shadow": {
  3758. "syntax": "none | <shadow>#",
  3759. "media": "visual",
  3760. "inherited": false,
  3761. "animationType": "shadowList",
  3762. "percentages": "no",
  3763. "groups": [
  3764. "CSS Backgrounds and Borders"
  3765. ],
  3766. "initial": "none",
  3767. "appliesto": "allElements",
  3768. "computed": "absoluteLengthsSpecifiedColorAsSpecified",
  3769. "order": "uniqueOrder",
  3770. "alsoAppliesTo": [
  3771. "::first-letter"
  3772. ],
  3773. "status": "standard",
  3774. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-shadow"
  3775. },
  3776. "box-sizing": {
  3777. "syntax": "content-box | border-box",
  3778. "media": "visual",
  3779. "inherited": false,
  3780. "animationType": "discrete",
  3781. "percentages": "no",
  3782. "groups": [
  3783. "CSS Basic User Interface"
  3784. ],
  3785. "initial": "content-box",
  3786. "appliesto": "allElementsAcceptingWidthOrHeight",
  3787. "computed": "asSpecified",
  3788. "order": "uniqueOrder",
  3789. "status": "standard",
  3790. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/box-sizing"
  3791. },
  3792. "break-after": {
  3793. "syntax": "auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",
  3794. "media": "visual",
  3795. "inherited": false,
  3796. "animationType": "discrete",
  3797. "percentages": "no",
  3798. "groups": [
  3799. "CSS Fragmentation"
  3800. ],
  3801. "initial": "auto",
  3802. "appliesto": "blockLevelElements",
  3803. "computed": "asSpecified",
  3804. "order": "uniqueOrder",
  3805. "status": "standard",
  3806. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/break-after"
  3807. },
  3808. "break-before": {
  3809. "syntax": "auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",
  3810. "media": "visual",
  3811. "inherited": false,
  3812. "animationType": "discrete",
  3813. "percentages": "no",
  3814. "groups": [
  3815. "CSS Fragmentation"
  3816. ],
  3817. "initial": "auto",
  3818. "appliesto": "blockLevelElements",
  3819. "computed": "asSpecified",
  3820. "order": "uniqueOrder",
  3821. "status": "standard",
  3822. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/break-before"
  3823. },
  3824. "break-inside": {
  3825. "syntax": "auto | avoid | avoid-page | avoid-column | avoid-region",
  3826. "media": "visual",
  3827. "inherited": false,
  3828. "animationType": "discrete",
  3829. "percentages": "no",
  3830. "groups": [
  3831. "CSS Fragmentation"
  3832. ],
  3833. "initial": "auto",
  3834. "appliesto": "blockLevelElements",
  3835. "computed": "asSpecified",
  3836. "order": "uniqueOrder",
  3837. "status": "standard",
  3838. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/break-inside"
  3839. },
  3840. "caption-side": {
  3841. "syntax": "top | bottom | block-start | block-end | inline-start | inline-end",
  3842. "media": "visual",
  3843. "inherited": true,
  3844. "animationType": "discrete",
  3845. "percentages": "no",
  3846. "groups": [
  3847. "CSS Table"
  3848. ],
  3849. "initial": "top",
  3850. "appliesto": "tableCaptionElements",
  3851. "computed": "asSpecified",
  3852. "order": "uniqueOrder",
  3853. "status": "standard",
  3854. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caption-side"
  3855. },
  3856. "caret-color": {
  3857. "syntax": "auto | <color>",
  3858. "media": "interactive",
  3859. "inherited": true,
  3860. "animationType": "color",
  3861. "percentages": "no",
  3862. "groups": [
  3863. "CSS Basic User Interface"
  3864. ],
  3865. "initial": "auto",
  3866. "appliesto": "allElements",
  3867. "computed": "asAutoOrColor",
  3868. "order": "perGrammar",
  3869. "status": "standard",
  3870. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/caret-color"
  3871. },
  3872. "clear": {
  3873. "syntax": "none | left | right | both | inline-start | inline-end",
  3874. "media": "visual",
  3875. "inherited": false,
  3876. "animationType": "discrete",
  3877. "percentages": "no",
  3878. "groups": [
  3879. "CSS Positioning"
  3880. ],
  3881. "initial": "none",
  3882. "appliesto": "blockLevelElements",
  3883. "computed": "asSpecified",
  3884. "order": "uniqueOrder",
  3885. "status": "standard",
  3886. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clear"
  3887. },
  3888. "clip": {
  3889. "syntax": "<shape> | auto",
  3890. "media": "visual",
  3891. "inherited": false,
  3892. "animationType": "rectangle",
  3893. "percentages": "no",
  3894. "groups": [
  3895. "CSS Masking"
  3896. ],
  3897. "initial": "auto",
  3898. "appliesto": "absolutelyPositionedElements",
  3899. "computed": "autoOrRectangle",
  3900. "order": "uniqueOrder",
  3901. "status": "standard",
  3902. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clip"
  3903. },
  3904. "clip-path": {
  3905. "syntax": "<clip-source> | [ <basic-shape> || <geometry-box> ] | none",
  3906. "media": "visual",
  3907. "inherited": false,
  3908. "animationType": "basicShapeOtherwiseNo",
  3909. "percentages": "referToReferenceBoxWhenSpecifiedOtherwiseBorderBox",
  3910. "groups": [
  3911. "CSS Masking"
  3912. ],
  3913. "initial": "none",
  3914. "appliesto": "allElementsSVGContainerElements",
  3915. "computed": "asSpecifiedURLsAbsolute",
  3916. "order": "uniqueOrder",
  3917. "status": "standard",
  3918. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/clip-path"
  3919. },
  3920. "color": {
  3921. "syntax": "<color>",
  3922. "media": "visual",
  3923. "inherited": true,
  3924. "animationType": "color",
  3925. "percentages": "no",
  3926. "groups": [
  3927. "CSS Color"
  3928. ],
  3929. "initial": "variesFromBrowserToBrowser",
  3930. "appliesto": "allElements",
  3931. "computed": "translucentValuesRGBAOtherwiseRGB",
  3932. "order": "uniqueOrder",
  3933. "alsoAppliesTo": [
  3934. "::first-letter",
  3935. "::first-line",
  3936. "::placeholder"
  3937. ],
  3938. "status": "standard",
  3939. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color"
  3940. },
  3941. "color-adjust": {
  3942. "syntax": "economy | exact",
  3943. "media": "visual",
  3944. "inherited": true,
  3945. "animationType": "discrete",
  3946. "percentages": "no",
  3947. "groups": [
  3948. "CSS Color"
  3949. ],
  3950. "initial": "economy",
  3951. "appliesto": "allElements",
  3952. "computed": "asSpecified",
  3953. "order": "perGrammar",
  3954. "status": "standard",
  3955. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/color-adjust"
  3956. },
  3957. "column-count": {
  3958. "syntax": "<integer> | auto",
  3959. "media": "visual",
  3960. "inherited": false,
  3961. "animationType": "integer",
  3962. "percentages": "no",
  3963. "groups": [
  3964. "CSS Columns"
  3965. ],
  3966. "initial": "auto",
  3967. "appliesto": "blockContainersExceptTableWrappers",
  3968. "computed": "asSpecified",
  3969. "order": "perGrammar",
  3970. "status": "standard",
  3971. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-count"
  3972. },
  3973. "column-fill": {
  3974. "syntax": "auto | balance | balance-all",
  3975. "media": "visualInContinuousMediaNoEffectInOverflowColumns",
  3976. "inherited": false,
  3977. "animationType": "discrete",
  3978. "percentages": "no",
  3979. "groups": [
  3980. "CSS Columns"
  3981. ],
  3982. "initial": "balance",
  3983. "appliesto": "multicolElements",
  3984. "computed": "asSpecified",
  3985. "order": "perGrammar",
  3986. "status": "standard",
  3987. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-fill"
  3988. },
  3989. "column-gap": {
  3990. "syntax": "normal | <length-percentage>",
  3991. "media": "visual",
  3992. "inherited": false,
  3993. "animationType": "lpc",
  3994. "percentages": "referToDimensionOfContentArea",
  3995. "groups": [
  3996. "CSS Box Alignment"
  3997. ],
  3998. "initial": "normal",
  3999. "appliesto": "multiColumnElementsFlexContainersGridContainers",
  4000. "computed": "asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",
  4001. "order": "perGrammar",
  4002. "status": "standard",
  4003. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-gap"
  4004. },
  4005. "column-rule": {
  4006. "syntax": "<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>",
  4007. "media": "visual",
  4008. "inherited": false,
  4009. "animationType": [
  4010. "column-rule-color",
  4011. "column-rule-style",
  4012. "column-rule-width"
  4013. ],
  4014. "percentages": "no",
  4015. "groups": [
  4016. "CSS Columns"
  4017. ],
  4018. "initial": [
  4019. "column-rule-width",
  4020. "column-rule-style",
  4021. "column-rule-color"
  4022. ],
  4023. "appliesto": "multicolElements",
  4024. "computed": [
  4025. "column-rule-color",
  4026. "column-rule-style",
  4027. "column-rule-width"
  4028. ],
  4029. "order": "perGrammar",
  4030. "status": "standard",
  4031. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule"
  4032. },
  4033. "column-rule-color": {
  4034. "syntax": "<color>",
  4035. "media": "visual",
  4036. "inherited": false,
  4037. "animationType": "color",
  4038. "percentages": "no",
  4039. "groups": [
  4040. "CSS Columns"
  4041. ],
  4042. "initial": "currentcolor",
  4043. "appliesto": "multicolElements",
  4044. "computed": "computedColor",
  4045. "order": "perGrammar",
  4046. "status": "standard",
  4047. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-color"
  4048. },
  4049. "column-rule-style": {
  4050. "syntax": "<'border-style'>",
  4051. "media": "visual",
  4052. "inherited": false,
  4053. "animationType": "discrete",
  4054. "percentages": "no",
  4055. "groups": [
  4056. "CSS Columns"
  4057. ],
  4058. "initial": "none",
  4059. "appliesto": "multicolElements",
  4060. "computed": "asSpecified",
  4061. "order": "perGrammar",
  4062. "status": "standard",
  4063. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-style"
  4064. },
  4065. "column-rule-width": {
  4066. "syntax": "<'border-width'>",
  4067. "media": "visual",
  4068. "inherited": false,
  4069. "animationType": "length",
  4070. "percentages": "no",
  4071. "groups": [
  4072. "CSS Columns"
  4073. ],
  4074. "initial": "medium",
  4075. "appliesto": "multicolElements",
  4076. "computed": "absoluteLength0IfColumnRuleStyleNoneOrHidden",
  4077. "order": "perGrammar",
  4078. "status": "standard",
  4079. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-rule-width"
  4080. },
  4081. "column-span": {
  4082. "syntax": "none | all",
  4083. "media": "visual",
  4084. "inherited": false,
  4085. "animationType": "discrete",
  4086. "percentages": "no",
  4087. "groups": [
  4088. "CSS Columns"
  4089. ],
  4090. "initial": "none",
  4091. "appliesto": "inFlowBlockLevelElements",
  4092. "computed": "asSpecified",
  4093. "order": "perGrammar",
  4094. "status": "standard",
  4095. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-span"
  4096. },
  4097. "column-width": {
  4098. "syntax": "<length> | auto",
  4099. "media": "visual",
  4100. "inherited": false,
  4101. "animationType": "length",
  4102. "percentages": "no",
  4103. "groups": [
  4104. "CSS Columns"
  4105. ],
  4106. "initial": "auto",
  4107. "appliesto": "blockContainersExceptTableWrappers",
  4108. "computed": "absoluteLengthZeroOrLarger",
  4109. "order": "perGrammar",
  4110. "status": "standard",
  4111. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-width"
  4112. },
  4113. "columns": {
  4114. "syntax": "<'column-width'> || <'column-count'>",
  4115. "media": "visual",
  4116. "inherited": false,
  4117. "animationType": [
  4118. "column-width",
  4119. "column-count"
  4120. ],
  4121. "percentages": "no",
  4122. "groups": [
  4123. "CSS Columns"
  4124. ],
  4125. "initial": [
  4126. "column-width",
  4127. "column-count"
  4128. ],
  4129. "appliesto": "blockContainersExceptTableWrappers",
  4130. "computed": [
  4131. "column-width",
  4132. "column-count"
  4133. ],
  4134. "order": "perGrammar",
  4135. "status": "standard",
  4136. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/columns"
  4137. },
  4138. "contain": {
  4139. "syntax": "none | strict | content | [ size || layout || style || paint ]",
  4140. "media": "all",
  4141. "inherited": false,
  4142. "animationType": "discrete",
  4143. "percentages": "no",
  4144. "groups": [
  4145. "CSS Containment"
  4146. ],
  4147. "initial": "none",
  4148. "appliesto": "allElements",
  4149. "computed": "asSpecified",
  4150. "order": "perGrammar",
  4151. "status": "standard",
  4152. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain"
  4153. },
  4154. "content": {
  4155. "syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ <string> ]?",
  4156. "media": "all",
  4157. "inherited": false,
  4158. "animationType": "discrete",
  4159. "percentages": "no",
  4160. "groups": [
  4161. "CSS Generated Content"
  4162. ],
  4163. "initial": "normal",
  4164. "appliesto": "beforeAndAfterPseudos",
  4165. "computed": "normalOnElementsForPseudosNoneAbsoluteURIStringOrAsSpecified",
  4166. "order": "uniqueOrder",
  4167. "status": "standard",
  4168. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/content"
  4169. },
  4170. "counter-increment": {
  4171. "syntax": "[ <custom-ident> <integer>? ]+ | none",
  4172. "media": "all",
  4173. "inherited": false,
  4174. "animationType": "discrete",
  4175. "percentages": "no",
  4176. "groups": [
  4177. "CSS Counter Styles"
  4178. ],
  4179. "initial": "none",
  4180. "appliesto": "allElements",
  4181. "computed": "asSpecified",
  4182. "order": "uniqueOrder",
  4183. "status": "standard",
  4184. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-increment"
  4185. },
  4186. "counter-reset": {
  4187. "syntax": "[ <custom-ident> <integer>? ]+ | none",
  4188. "media": "all",
  4189. "inherited": false,
  4190. "animationType": "discrete",
  4191. "percentages": "no",
  4192. "groups": [
  4193. "CSS Counter Styles"
  4194. ],
  4195. "initial": "none",
  4196. "appliesto": "allElements",
  4197. "computed": "asSpecified",
  4198. "order": "uniqueOrder",
  4199. "status": "standard",
  4200. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-reset"
  4201. },
  4202. "counter-set": {
  4203. "syntax": "[ <custom-ident> <integer>? ]+ | none",
  4204. "media": "all",
  4205. "inherited": false,
  4206. "animationType": "discrete",
  4207. "percentages": "no",
  4208. "groups": [
  4209. "CSS Counter Styles"
  4210. ],
  4211. "initial": "none",
  4212. "appliesto": "allElements",
  4213. "computed": "asSpecified",
  4214. "order": "uniqueOrder",
  4215. "status": "standard",
  4216. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/counter-set"
  4217. },
  4218. "cursor": {
  4219. "syntax": "[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]",
  4220. "media": [
  4221. "visual",
  4222. "interactive"
  4223. ],
  4224. "inherited": true,
  4225. "animationType": "discrete",
  4226. "percentages": "no",
  4227. "groups": [
  4228. "CSS Basic User Interface"
  4229. ],
  4230. "initial": "auto",
  4231. "appliesto": "allElements",
  4232. "computed": "asSpecifiedURLsAbsolute",
  4233. "order": "uniqueOrder",
  4234. "status": "standard",
  4235. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/cursor"
  4236. },
  4237. "direction": {
  4238. "syntax": "ltr | rtl",
  4239. "media": "visual",
  4240. "inherited": true,
  4241. "animationType": "discrete",
  4242. "percentages": "no",
  4243. "groups": [
  4244. "CSS Writing Modes"
  4245. ],
  4246. "initial": "ltr",
  4247. "appliesto": "allElements",
  4248. "computed": "asSpecified",
  4249. "order": "uniqueOrder",
  4250. "status": "standard",
  4251. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/direction"
  4252. },
  4253. "display": {
  4254. "syntax": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy>",
  4255. "media": "all",
  4256. "inherited": false,
  4257. "animationType": "discrete",
  4258. "percentages": "no",
  4259. "groups": [
  4260. "CSS Display"
  4261. ],
  4262. "initial": "inline",
  4263. "appliesto": "allElements",
  4264. "computed": "asSpecifiedExceptPositionedFloatingAndRootElementsKeywordMaybeDifferent",
  4265. "order": "uniqueOrder",
  4266. "status": "standard",
  4267. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/display"
  4268. },
  4269. "empty-cells": {
  4270. "syntax": "show | hide",
  4271. "media": "visual",
  4272. "inherited": true,
  4273. "animationType": "discrete",
  4274. "percentages": "no",
  4275. "groups": [
  4276. "CSS Table"
  4277. ],
  4278. "initial": "show",
  4279. "appliesto": "tableCellElements",
  4280. "computed": "asSpecified",
  4281. "order": "uniqueOrder",
  4282. "status": "standard",
  4283. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/empty-cells"
  4284. },
  4285. "filter": {
  4286. "syntax": "none | <filter-function-list>",
  4287. "media": "visual",
  4288. "inherited": false,
  4289. "animationType": "filterList",
  4290. "percentages": "no",
  4291. "groups": [
  4292. "Filter Effects"
  4293. ],
  4294. "initial": "none",
  4295. "appliesto": "allElementsSVGContainerElements",
  4296. "computed": "asSpecified",
  4297. "order": "uniqueOrder",
  4298. "status": "standard",
  4299. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/filter"
  4300. },
  4301. "flex": {
  4302. "syntax": "none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]",
  4303. "media": "visual",
  4304. "inherited": false,
  4305. "animationType": [
  4306. "flex-grow",
  4307. "flex-shrink",
  4308. "flex-basis"
  4309. ],
  4310. "percentages": "no",
  4311. "groups": [
  4312. "CSS Flexible Box Layout"
  4313. ],
  4314. "initial": [
  4315. "flex-grow",
  4316. "flex-shrink",
  4317. "flex-basis"
  4318. ],
  4319. "appliesto": "flexItemsAndInFlowPseudos",
  4320. "computed": [
  4321. "flex-grow",
  4322. "flex-shrink",
  4323. "flex-basis"
  4324. ],
  4325. "order": "orderOfAppearance",
  4326. "status": "standard",
  4327. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex"
  4328. },
  4329. "flex-basis": {
  4330. "syntax": "content | <'width'>",
  4331. "media": "visual",
  4332. "inherited": false,
  4333. "animationType": "lpc",
  4334. "percentages": "referToFlexContainersInnerMainSize",
  4335. "groups": [
  4336. "CSS Flexible Box Layout"
  4337. ],
  4338. "initial": "auto",
  4339. "appliesto": "flexItemsAndInFlowPseudos",
  4340. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  4341. "order": "lengthOrPercentageBeforeKeywordIfBothPresent",
  4342. "status": "standard",
  4343. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-basis"
  4344. },
  4345. "flex-direction": {
  4346. "syntax": "row | row-reverse | column | column-reverse",
  4347. "media": "visual",
  4348. "inherited": false,
  4349. "animationType": "discrete",
  4350. "percentages": "no",
  4351. "groups": [
  4352. "CSS Flexible Box Layout"
  4353. ],
  4354. "initial": "row",
  4355. "appliesto": "flexContainers",
  4356. "computed": "asSpecified",
  4357. "order": "uniqueOrder",
  4358. "status": "standard",
  4359. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-direction"
  4360. },
  4361. "flex-flow": {
  4362. "syntax": "<'flex-direction'> || <'flex-wrap'>",
  4363. "media": "visual",
  4364. "inherited": false,
  4365. "animationType": "discrete",
  4366. "percentages": "no",
  4367. "groups": [
  4368. "CSS Flexible Box Layout"
  4369. ],
  4370. "initial": [
  4371. "flex-direction",
  4372. "flex-wrap"
  4373. ],
  4374. "appliesto": "flexContainers",
  4375. "computed": [
  4376. "flex-direction",
  4377. "flex-wrap"
  4378. ],
  4379. "order": "orderOfAppearance",
  4380. "status": "standard",
  4381. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-flow"
  4382. },
  4383. "flex-grow": {
  4384. "syntax": "<number>",
  4385. "media": "visual",
  4386. "inherited": false,
  4387. "animationType": "number",
  4388. "percentages": "no",
  4389. "groups": [
  4390. "CSS Flexible Box Layout"
  4391. ],
  4392. "initial": "0",
  4393. "appliesto": "flexItemsAndInFlowPseudos",
  4394. "computed": "asSpecified",
  4395. "order": "uniqueOrder",
  4396. "status": "standard",
  4397. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-grow"
  4398. },
  4399. "flex-shrink": {
  4400. "syntax": "<number>",
  4401. "media": "visual",
  4402. "inherited": false,
  4403. "animationType": "number",
  4404. "percentages": "no",
  4405. "groups": [
  4406. "CSS Flexible Box Layout"
  4407. ],
  4408. "initial": "1",
  4409. "appliesto": "flexItemsAndInFlowPseudos",
  4410. "computed": "asSpecified",
  4411. "order": "uniqueOrder",
  4412. "status": "standard",
  4413. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-shrink"
  4414. },
  4415. "flex-wrap": {
  4416. "syntax": "nowrap | wrap | wrap-reverse",
  4417. "media": "visual",
  4418. "inherited": false,
  4419. "animationType": "discrete",
  4420. "percentages": "no",
  4421. "groups": [
  4422. "CSS Flexible Box Layout"
  4423. ],
  4424. "initial": "nowrap",
  4425. "appliesto": "flexContainers",
  4426. "computed": "asSpecified",
  4427. "order": "uniqueOrder",
  4428. "status": "standard",
  4429. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/flex-wrap"
  4430. },
  4431. "float": {
  4432. "syntax": "left | right | none | inline-start | inline-end",
  4433. "media": "visual",
  4434. "inherited": false,
  4435. "animationType": "discrete",
  4436. "percentages": "no",
  4437. "groups": [
  4438. "CSS Positioning"
  4439. ],
  4440. "initial": "none",
  4441. "appliesto": "allElementsNoEffectIfDisplayNone",
  4442. "computed": "asSpecified",
  4443. "order": "uniqueOrder",
  4444. "status": "standard",
  4445. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/float"
  4446. },
  4447. "font": {
  4448. "syntax": "[ [ <'font-style'> || <font-variant-css21> || <'font-weight'> || <'font-stretch'> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'> ] | caption | icon | menu | message-box | small-caption | status-bar",
  4449. "media": "visual",
  4450. "inherited": true,
  4451. "animationType": [
  4452. "font-style",
  4453. "font-variant",
  4454. "font-weight",
  4455. "font-stretch",
  4456. "font-size",
  4457. "line-height",
  4458. "font-family"
  4459. ],
  4460. "percentages": [
  4461. "font-size",
  4462. "line-height"
  4463. ],
  4464. "groups": [
  4465. "CSS Fonts"
  4466. ],
  4467. "initial": [
  4468. "font-style",
  4469. "font-variant",
  4470. "font-weight",
  4471. "font-stretch",
  4472. "font-size",
  4473. "line-height",
  4474. "font-family"
  4475. ],
  4476. "appliesto": "allElements",
  4477. "computed": [
  4478. "font-style",
  4479. "font-variant",
  4480. "font-weight",
  4481. "font-stretch",
  4482. "font-size",
  4483. "line-height",
  4484. "font-family"
  4485. ],
  4486. "order": "orderOfAppearance",
  4487. "alsoAppliesTo": [
  4488. "::first-letter",
  4489. "::first-line",
  4490. "::placeholder"
  4491. ],
  4492. "status": "standard",
  4493. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font"
  4494. },
  4495. "font-family": {
  4496. "syntax": "[ <family-name> | <generic-family> ]#",
  4497. "media": "visual",
  4498. "inherited": true,
  4499. "animationType": "discrete",
  4500. "percentages": "no",
  4501. "groups": [
  4502. "CSS Fonts"
  4503. ],
  4504. "initial": "dependsOnUserAgent",
  4505. "appliesto": "allElements",
  4506. "computed": "asSpecified",
  4507. "order": "uniqueOrder",
  4508. "alsoAppliesTo": [
  4509. "::first-letter",
  4510. "::first-line",
  4511. "::placeholder"
  4512. ],
  4513. "status": "standard",
  4514. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-family"
  4515. },
  4516. "font-feature-settings": {
  4517. "syntax": "normal | <feature-tag-value>#",
  4518. "media": "visual",
  4519. "inherited": true,
  4520. "animationType": "discrete",
  4521. "percentages": "no",
  4522. "groups": [
  4523. "CSS Fonts"
  4524. ],
  4525. "initial": "normal",
  4526. "appliesto": "allElements",
  4527. "computed": "asSpecified",
  4528. "order": "uniqueOrder",
  4529. "alsoAppliesTo": [
  4530. "::first-letter",
  4531. "::first-line",
  4532. "::placeholder"
  4533. ],
  4534. "status": "standard",
  4535. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-feature-settings"
  4536. },
  4537. "font-kerning": {
  4538. "syntax": "auto | normal | none",
  4539. "media": "visual",
  4540. "inherited": true,
  4541. "animationType": "discrete",
  4542. "percentages": "no",
  4543. "groups": [
  4544. "CSS Fonts"
  4545. ],
  4546. "initial": "auto",
  4547. "appliesto": "allElements",
  4548. "computed": "asSpecified",
  4549. "order": "uniqueOrder",
  4550. "alsoAppliesTo": [
  4551. "::first-letter",
  4552. "::first-line",
  4553. "::placeholder"
  4554. ],
  4555. "status": "standard",
  4556. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-kerning"
  4557. },
  4558. "font-language-override": {
  4559. "syntax": "normal | <string>",
  4560. "media": "visual",
  4561. "inherited": true,
  4562. "animationType": "discrete",
  4563. "percentages": "no",
  4564. "groups": [
  4565. "CSS Fonts"
  4566. ],
  4567. "initial": "normal",
  4568. "appliesto": "allElements",
  4569. "computed": "asSpecified",
  4570. "order": "uniqueOrder",
  4571. "alsoAppliesTo": [
  4572. "::first-letter",
  4573. "::first-line",
  4574. "::placeholder"
  4575. ],
  4576. "status": "standard",
  4577. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-language-override"
  4578. },
  4579. "font-optical-sizing": {
  4580. "syntax": "auto | none",
  4581. "media": "visual",
  4582. "inherited": true,
  4583. "animationType": "discrete",
  4584. "percentages": "no",
  4585. "groups": [
  4586. "CSS Fonts"
  4587. ],
  4588. "initial": "auto",
  4589. "appliesto": "allElements",
  4590. "computed": "asSpecified",
  4591. "order": "perGrammar",
  4592. "alsoAppliesTo": [
  4593. "::first-letter",
  4594. "::first-line",
  4595. "::placeholder"
  4596. ],
  4597. "status": "standard",
  4598. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-optical-sizing"
  4599. },
  4600. "font-variation-settings": {
  4601. "syntax": "normal | [ <string> <number> ]#",
  4602. "media": "visual",
  4603. "inherited": true,
  4604. "animationType": "transform",
  4605. "percentages": "no",
  4606. "groups": [
  4607. "CSS Fonts"
  4608. ],
  4609. "initial": "normal",
  4610. "appliesto": "allElements",
  4611. "computed": "asSpecified",
  4612. "order": "perGrammar",
  4613. "alsoAppliesTo": [
  4614. "::first-letter",
  4615. "::first-line",
  4616. "::placeholder"
  4617. ],
  4618. "status": "standard",
  4619. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variation-settings"
  4620. },
  4621. "font-size": {
  4622. "syntax": "<absolute-size> | <relative-size> | <length-percentage>",
  4623. "media": "visual",
  4624. "inherited": true,
  4625. "animationType": "length",
  4626. "percentages": "referToParentElementsFontSize",
  4627. "groups": [
  4628. "CSS Fonts"
  4629. ],
  4630. "initial": "medium",
  4631. "appliesto": "allElements",
  4632. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  4633. "order": "uniqueOrder",
  4634. "alsoAppliesTo": [
  4635. "::first-letter",
  4636. "::first-line",
  4637. "::placeholder"
  4638. ],
  4639. "status": "standard",
  4640. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-size"
  4641. },
  4642. "font-size-adjust": {
  4643. "syntax": "none | <number>",
  4644. "media": "visual",
  4645. "inherited": true,
  4646. "animationType": "number",
  4647. "percentages": "no",
  4648. "groups": [
  4649. "CSS Fonts"
  4650. ],
  4651. "initial": "none",
  4652. "appliesto": "allElements",
  4653. "computed": "asSpecified",
  4654. "order": "uniqueOrder",
  4655. "alsoAppliesTo": [
  4656. "::first-letter",
  4657. "::first-line",
  4658. "::placeholder"
  4659. ],
  4660. "status": "standard",
  4661. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-size-adjust"
  4662. },
  4663. "font-smooth": {
  4664. "syntax": "auto | never | always | <absolute-size> | <length>",
  4665. "media": "visual",
  4666. "inherited": true,
  4667. "animationType": "discrete",
  4668. "percentages": "no",
  4669. "groups": [
  4670. "CSS Fonts"
  4671. ],
  4672. "initial": "auto",
  4673. "appliesto": "allElements",
  4674. "computed": "asSpecified",
  4675. "order": "uniqueOrder",
  4676. "status": "nonstandard",
  4677. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-smooth"
  4678. },
  4679. "font-stretch": {
  4680. "syntax": "<font-stretch-absolute>",
  4681. "media": "visual",
  4682. "inherited": true,
  4683. "animationType": "fontStretch",
  4684. "percentages": "no",
  4685. "groups": [
  4686. "CSS Fonts"
  4687. ],
  4688. "initial": "normal",
  4689. "appliesto": "allElements",
  4690. "computed": "asSpecified",
  4691. "order": "uniqueOrder",
  4692. "alsoAppliesTo": [
  4693. "::first-letter",
  4694. "::first-line",
  4695. "::placeholder"
  4696. ],
  4697. "status": "standard",
  4698. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-stretch"
  4699. },
  4700. "font-style": {
  4701. "syntax": "normal | italic | oblique <angle>?",
  4702. "media": "visual",
  4703. "inherited": true,
  4704. "animationType": "discrete",
  4705. "percentages": "no",
  4706. "groups": [
  4707. "CSS Fonts"
  4708. ],
  4709. "initial": "normal",
  4710. "appliesto": "allElements",
  4711. "computed": "asSpecified",
  4712. "order": "uniqueOrder",
  4713. "alsoAppliesTo": [
  4714. "::first-letter",
  4715. "::first-line",
  4716. "::placeholder"
  4717. ],
  4718. "status": "standard",
  4719. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-style"
  4720. },
  4721. "font-synthesis": {
  4722. "syntax": "none | [ weight || style ]",
  4723. "media": "visual",
  4724. "inherited": true,
  4725. "animationType": "discrete",
  4726. "percentages": "no",
  4727. "groups": [
  4728. "CSS Fonts"
  4729. ],
  4730. "initial": "weight style",
  4731. "appliesto": "allElements",
  4732. "computed": "asSpecified",
  4733. "order": "orderOfAppearance",
  4734. "alsoAppliesTo": [
  4735. "::first-letter",
  4736. "::first-line",
  4737. "::placeholder"
  4738. ],
  4739. "status": "standard",
  4740. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-synthesis"
  4741. },
  4742. "font-variant": {
  4743. "syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> || stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero || <east-asian-variant-values> || <east-asian-width-values> || ruby ]",
  4744. "media": "visual",
  4745. "inherited": true,
  4746. "animationType": "discrete",
  4747. "percentages": "no",
  4748. "groups": [
  4749. "CSS Fonts"
  4750. ],
  4751. "initial": "normal",
  4752. "appliesto": "allElements",
  4753. "computed": "asSpecified",
  4754. "order": "uniqueOrder",
  4755. "alsoAppliesTo": [
  4756. "::first-letter",
  4757. "::first-line",
  4758. "::placeholder"
  4759. ],
  4760. "status": "standard",
  4761. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant"
  4762. },
  4763. "font-variant-alternates": {
  4764. "syntax": "normal | [ stylistic( <feature-value-name> ) || historical-forms || styleset( <feature-value-name># ) || character-variant( <feature-value-name># ) || swash( <feature-value-name> ) || ornaments( <feature-value-name> ) || annotation( <feature-value-name> ) ]",
  4765. "media": "visual",
  4766. "inherited": true,
  4767. "animationType": "discrete",
  4768. "percentages": "no",
  4769. "groups": [
  4770. "CSS Fonts"
  4771. ],
  4772. "initial": "normal",
  4773. "appliesto": "allElements",
  4774. "computed": "asSpecified",
  4775. "order": "orderOfAppearance",
  4776. "alsoAppliesTo": [
  4777. "::first-letter",
  4778. "::first-line",
  4779. "::placeholder"
  4780. ],
  4781. "status": "standard",
  4782. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-alternates"
  4783. },
  4784. "font-variant-caps": {
  4785. "syntax": "normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps",
  4786. "media": "visual",
  4787. "inherited": true,
  4788. "animationType": "discrete",
  4789. "percentages": "no",
  4790. "groups": [
  4791. "CSS Fonts"
  4792. ],
  4793. "initial": "normal",
  4794. "appliesto": "allElements",
  4795. "computed": "asSpecified",
  4796. "order": "uniqueOrder",
  4797. "alsoAppliesTo": [
  4798. "::first-letter",
  4799. "::first-line",
  4800. "::placeholder"
  4801. ],
  4802. "status": "standard",
  4803. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-caps"
  4804. },
  4805. "font-variant-east-asian": {
  4806. "syntax": "normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]",
  4807. "media": "visual",
  4808. "inherited": true,
  4809. "animationType": "discrete",
  4810. "percentages": "no",
  4811. "groups": [
  4812. "CSS Fonts"
  4813. ],
  4814. "initial": "normal",
  4815. "appliesto": "allElements",
  4816. "computed": "asSpecified",
  4817. "order": "orderOfAppearance",
  4818. "alsoAppliesTo": [
  4819. "::first-letter",
  4820. "::first-line",
  4821. "::placeholder"
  4822. ],
  4823. "status": "standard",
  4824. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian"
  4825. },
  4826. "font-variant-ligatures": {
  4827. "syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]",
  4828. "media": "visual",
  4829. "inherited": true,
  4830. "animationType": "discrete",
  4831. "percentages": "no",
  4832. "groups": [
  4833. "CSS Fonts"
  4834. ],
  4835. "initial": "normal",
  4836. "appliesto": "allElements",
  4837. "computed": "asSpecified",
  4838. "order": "orderOfAppearance",
  4839. "alsoAppliesTo": [
  4840. "::first-letter",
  4841. "::first-line",
  4842. "::placeholder"
  4843. ],
  4844. "status": "standard",
  4845. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-ligatures"
  4846. },
  4847. "font-variant-numeric": {
  4848. "syntax": "normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]",
  4849. "media": "visual",
  4850. "inherited": true,
  4851. "animationType": "discrete",
  4852. "percentages": "no",
  4853. "groups": [
  4854. "CSS Fonts"
  4855. ],
  4856. "initial": "normal",
  4857. "appliesto": "allElements",
  4858. "computed": "asSpecified",
  4859. "order": "orderOfAppearance",
  4860. "alsoAppliesTo": [
  4861. "::first-letter",
  4862. "::first-line",
  4863. "::placeholder"
  4864. ],
  4865. "status": "standard",
  4866. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-numeric"
  4867. },
  4868. "font-variant-position": {
  4869. "syntax": "normal | sub | super",
  4870. "media": "visual",
  4871. "inherited": true,
  4872. "animationType": "discrete",
  4873. "percentages": "no",
  4874. "groups": [
  4875. "CSS Fonts"
  4876. ],
  4877. "initial": "normal",
  4878. "appliesto": "allElements",
  4879. "computed": "asSpecified",
  4880. "order": "uniqueOrder",
  4881. "alsoAppliesTo": [
  4882. "::first-letter",
  4883. "::first-line",
  4884. "::placeholder"
  4885. ],
  4886. "status": "standard",
  4887. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-variant-position"
  4888. },
  4889. "font-weight": {
  4890. "syntax": "<font-weight-absolute> | bolder | lighter",
  4891. "media": "visual",
  4892. "inherited": true,
  4893. "animationType": "fontWeight",
  4894. "percentages": "no",
  4895. "groups": [
  4896. "CSS Fonts"
  4897. ],
  4898. "initial": "normal",
  4899. "appliesto": "allElements",
  4900. "computed": "keywordOrNumericalValueBolderLighterTransformedToRealValue",
  4901. "order": "uniqueOrder",
  4902. "alsoAppliesTo": [
  4903. "::first-letter",
  4904. "::first-line",
  4905. "::placeholder"
  4906. ],
  4907. "status": "standard",
  4908. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/font-weight"
  4909. },
  4910. "gap": {
  4911. "syntax": "<'row-gap'> <'column-gap'>?",
  4912. "media": "visual",
  4913. "inherited": false,
  4914. "animationType": [
  4915. "row-gap",
  4916. "column-gap"
  4917. ],
  4918. "percentages": "no",
  4919. "groups": [
  4920. "CSS Box Alignment"
  4921. ],
  4922. "initial": [
  4923. "row-gap",
  4924. "column-gap"
  4925. ],
  4926. "appliesto": "multiColumnElementsFlexContainersGridContainers",
  4927. "computed": [
  4928. "row-gap",
  4929. "column-gap"
  4930. ],
  4931. "order": "uniqueOrder",
  4932. "status": "standard",
  4933. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gap"
  4934. },
  4935. "grid": {
  4936. "syntax": "<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>",
  4937. "media": "visual",
  4938. "inherited": false,
  4939. "animationType": "discrete",
  4940. "percentages": [
  4941. "grid-template-rows",
  4942. "grid-template-columns",
  4943. "grid-auto-rows",
  4944. "grid-auto-columns"
  4945. ],
  4946. "groups": [
  4947. "CSS Grid Layout"
  4948. ],
  4949. "initial": [
  4950. "grid-template-rows",
  4951. "grid-template-columns",
  4952. "grid-template-areas",
  4953. "grid-auto-rows",
  4954. "grid-auto-columns",
  4955. "grid-auto-flow",
  4956. "grid-column-gap",
  4957. "grid-row-gap",
  4958. "column-gap",
  4959. "row-gap"
  4960. ],
  4961. "appliesto": "gridContainers",
  4962. "computed": [
  4963. "grid-template-rows",
  4964. "grid-template-columns",
  4965. "grid-template-areas",
  4966. "grid-auto-rows",
  4967. "grid-auto-columns",
  4968. "grid-auto-flow",
  4969. "grid-column-gap",
  4970. "grid-row-gap",
  4971. "column-gap",
  4972. "row-gap"
  4973. ],
  4974. "order": "uniqueOrder",
  4975. "status": "standard",
  4976. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid"
  4977. },
  4978. "grid-area": {
  4979. "syntax": "<grid-line> [ / <grid-line> ]{0,3}",
  4980. "media": "visual",
  4981. "inherited": false,
  4982. "animationType": "discrete",
  4983. "percentages": "no",
  4984. "groups": [
  4985. "CSS Grid Layout"
  4986. ],
  4987. "initial": [
  4988. "grid-row-start",
  4989. "grid-column-start",
  4990. "grid-row-end",
  4991. "grid-column-end"
  4992. ],
  4993. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  4994. "computed": [
  4995. "grid-row-start",
  4996. "grid-column-start",
  4997. "grid-row-end",
  4998. "grid-column-end"
  4999. ],
  5000. "order": "uniqueOrder",
  5001. "status": "standard",
  5002. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-area"
  5003. },
  5004. "grid-auto-columns": {
  5005. "syntax": "<track-size>+",
  5006. "media": "visual",
  5007. "inherited": false,
  5008. "animationType": "discrete",
  5009. "percentages": "referToDimensionOfContentArea",
  5010. "groups": [
  5011. "CSS Grid Layout"
  5012. ],
  5013. "initial": "auto",
  5014. "appliesto": "gridContainers",
  5015. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5016. "order": "uniqueOrder",
  5017. "status": "standard",
  5018. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-auto-columns"
  5019. },
  5020. "grid-auto-flow": {
  5021. "syntax": "[ row | column ] || dense",
  5022. "media": "visual",
  5023. "inherited": false,
  5024. "animationType": "discrete",
  5025. "percentages": "no",
  5026. "groups": [
  5027. "CSS Grid Layout"
  5028. ],
  5029. "initial": "row",
  5030. "appliesto": "gridContainers",
  5031. "computed": "asSpecified",
  5032. "order": "uniqueOrder",
  5033. "status": "standard",
  5034. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-auto-flow"
  5035. },
  5036. "grid-auto-rows": {
  5037. "syntax": "<track-size>+",
  5038. "media": "visual",
  5039. "inherited": false,
  5040. "animationType": "discrete",
  5041. "percentages": "referToDimensionOfContentArea",
  5042. "groups": [
  5043. "CSS Grid Layout"
  5044. ],
  5045. "initial": "auto",
  5046. "appliesto": "gridContainers",
  5047. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5048. "order": "uniqueOrder",
  5049. "status": "standard",
  5050. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-auto-rows"
  5051. },
  5052. "grid-column": {
  5053. "syntax": "<grid-line> [ / <grid-line> ]?",
  5054. "media": "visual",
  5055. "inherited": false,
  5056. "animationType": "discrete",
  5057. "percentages": "no",
  5058. "groups": [
  5059. "CSS Grid Layout"
  5060. ],
  5061. "initial": [
  5062. "grid-column-start",
  5063. "grid-column-end"
  5064. ],
  5065. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  5066. "computed": [
  5067. "grid-column-start",
  5068. "grid-column-end"
  5069. ],
  5070. "order": "uniqueOrder",
  5071. "status": "standard",
  5072. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-column"
  5073. },
  5074. "grid-column-end": {
  5075. "syntax": "<grid-line>",
  5076. "media": "visual",
  5077. "inherited": false,
  5078. "animationType": "discrete",
  5079. "percentages": "no",
  5080. "groups": [
  5081. "CSS Grid Layout"
  5082. ],
  5083. "initial": "auto",
  5084. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  5085. "computed": "asSpecified",
  5086. "order": "uniqueOrder",
  5087. "status": "standard",
  5088. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-column-end"
  5089. },
  5090. "grid-column-gap": {
  5091. "syntax": "<length-percentage>",
  5092. "media": "visual",
  5093. "inherited": false,
  5094. "animationType": "length",
  5095. "percentages": "referToDimensionOfContentArea",
  5096. "groups": [
  5097. "CSS Grid Layout"
  5098. ],
  5099. "initial": "0",
  5100. "appliesto": "gridContainers",
  5101. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5102. "order": "uniqueOrder",
  5103. "status": "obsolete",
  5104. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/column-gap"
  5105. },
  5106. "grid-column-start": {
  5107. "syntax": "<grid-line>",
  5108. "media": "visual",
  5109. "inherited": false,
  5110. "animationType": "discrete",
  5111. "percentages": "no",
  5112. "groups": [
  5113. "CSS Grid Layout"
  5114. ],
  5115. "initial": "auto",
  5116. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  5117. "computed": "asSpecified",
  5118. "order": "uniqueOrder",
  5119. "status": "standard",
  5120. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-column-start"
  5121. },
  5122. "grid-gap": {
  5123. "syntax": "<'grid-row-gap'> <'grid-column-gap'>?",
  5124. "media": "visual",
  5125. "inherited": false,
  5126. "animationType": [
  5127. "grid-row-gap",
  5128. "grid-column-gap"
  5129. ],
  5130. "percentages": "no",
  5131. "groups": [
  5132. "CSS Grid Layout"
  5133. ],
  5134. "initial": [
  5135. "grid-row-gap",
  5136. "grid-column-gap"
  5137. ],
  5138. "appliesto": "gridContainers",
  5139. "computed": [
  5140. "grid-row-gap",
  5141. "grid-column-gap"
  5142. ],
  5143. "order": "uniqueOrder",
  5144. "status": "obsolete",
  5145. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/gap"
  5146. },
  5147. "grid-row": {
  5148. "syntax": "<grid-line> [ / <grid-line> ]?",
  5149. "media": "visual",
  5150. "inherited": false,
  5151. "animationType": "discrete",
  5152. "percentages": "no",
  5153. "groups": [
  5154. "CSS Grid Layout"
  5155. ],
  5156. "initial": [
  5157. "grid-row-start",
  5158. "grid-row-end"
  5159. ],
  5160. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  5161. "computed": [
  5162. "grid-row-start",
  5163. "grid-row-end"
  5164. ],
  5165. "order": "uniqueOrder",
  5166. "status": "standard",
  5167. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-row"
  5168. },
  5169. "grid-row-end": {
  5170. "syntax": "<grid-line>",
  5171. "media": "visual",
  5172. "inherited": false,
  5173. "animationType": "discrete",
  5174. "percentages": "no",
  5175. "groups": [
  5176. "CSS Grid Layout"
  5177. ],
  5178. "initial": "auto",
  5179. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  5180. "computed": "asSpecified",
  5181. "order": "uniqueOrder",
  5182. "status": "standard",
  5183. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-row-end"
  5184. },
  5185. "grid-row-gap": {
  5186. "syntax": "<length-percentage>",
  5187. "media": "visual",
  5188. "inherited": false,
  5189. "animationType": "length",
  5190. "percentages": "referToDimensionOfContentArea",
  5191. "groups": [
  5192. "CSS Grid Layout"
  5193. ],
  5194. "initial": "0",
  5195. "appliesto": "gridContainers",
  5196. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5197. "order": "uniqueOrder",
  5198. "status": "obsolete",
  5199. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/row-gap"
  5200. },
  5201. "grid-row-start": {
  5202. "syntax": "<grid-line>",
  5203. "media": "visual",
  5204. "inherited": false,
  5205. "animationType": "discrete",
  5206. "percentages": "no",
  5207. "groups": [
  5208. "CSS Grid Layout"
  5209. ],
  5210. "initial": "auto",
  5211. "appliesto": "gridItemsAndBoxesWithinGridContainer",
  5212. "computed": "asSpecified",
  5213. "order": "uniqueOrder",
  5214. "status": "standard",
  5215. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-row-start"
  5216. },
  5217. "grid-template": {
  5218. "syntax": "none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?",
  5219. "media": "visual",
  5220. "inherited": false,
  5221. "animationType": "discrete",
  5222. "percentages": [
  5223. "grid-template-columns",
  5224. "grid-template-rows"
  5225. ],
  5226. "groups": [
  5227. "CSS Grid Layout"
  5228. ],
  5229. "initial": [
  5230. "grid-template-columns",
  5231. "grid-template-rows",
  5232. "grid-template-areas"
  5233. ],
  5234. "appliesto": "gridContainers",
  5235. "computed": [
  5236. "grid-template-columns",
  5237. "grid-template-rows",
  5238. "grid-template-areas"
  5239. ],
  5240. "order": "uniqueOrder",
  5241. "status": "standard",
  5242. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template"
  5243. },
  5244. "grid-template-areas": {
  5245. "syntax": "none | <string>+",
  5246. "media": "visual",
  5247. "inherited": false,
  5248. "animationType": "discrete",
  5249. "percentages": "no",
  5250. "groups": [
  5251. "CSS Grid Layout"
  5252. ],
  5253. "initial": "none",
  5254. "appliesto": "gridContainers",
  5255. "computed": "asSpecified",
  5256. "order": "uniqueOrder",
  5257. "status": "standard",
  5258. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template-areas"
  5259. },
  5260. "grid-template-columns": {
  5261. "syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
  5262. "media": "visual",
  5263. "inherited": false,
  5264. "animationType": "simpleListOfLpcDifferenceLpc",
  5265. "percentages": "referToDimensionOfContentArea",
  5266. "groups": [
  5267. "CSS Grid Layout"
  5268. ],
  5269. "initial": "none",
  5270. "appliesto": "gridContainers",
  5271. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  5272. "order": "uniqueOrder",
  5273. "status": "standard",
  5274. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template-columns"
  5275. },
  5276. "grid-template-rows": {
  5277. "syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
  5278. "media": "visual",
  5279. "inherited": false,
  5280. "animationType": "simpleListOfLpcDifferenceLpc",
  5281. "percentages": "referToDimensionOfContentArea",
  5282. "groups": [
  5283. "CSS Grid Layout"
  5284. ],
  5285. "initial": "none",
  5286. "appliesto": "gridContainers",
  5287. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  5288. "order": "uniqueOrder",
  5289. "status": "standard",
  5290. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/grid-template-rows"
  5291. },
  5292. "hanging-punctuation": {
  5293. "syntax": "none | [ first || [ force-end | allow-end ] || last ]",
  5294. "media": "visual",
  5295. "inherited": true,
  5296. "animationType": "discrete",
  5297. "percentages": "no",
  5298. "groups": [
  5299. "CSS Text"
  5300. ],
  5301. "initial": "none",
  5302. "appliesto": "allElements",
  5303. "computed": "asSpecified",
  5304. "order": "uniqueOrder",
  5305. "status": "standard",
  5306. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hanging-punctuation"
  5307. },
  5308. "height": {
  5309. "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",
  5310. "media": "visual",
  5311. "inherited": false,
  5312. "animationType": "lpc",
  5313. "percentages": "regardingHeightOfGeneratedBoxContainingBlockPercentagesRelativeToContainingBlock",
  5314. "groups": [
  5315. "CSS Box Model"
  5316. ],
  5317. "initial": "auto",
  5318. "appliesto": "allElementsButNonReplacedAndTableColumns",
  5319. "computed": "percentageAutoOrAbsoluteLength",
  5320. "order": "uniqueOrder",
  5321. "status": "standard",
  5322. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/height"
  5323. },
  5324. "hyphens": {
  5325. "syntax": "none | manual | auto",
  5326. "media": "visual",
  5327. "inherited": true,
  5328. "animationType": "discrete",
  5329. "percentages": "no",
  5330. "groups": [
  5331. "CSS Text"
  5332. ],
  5333. "initial": "manual",
  5334. "appliesto": "allElements",
  5335. "computed": "asSpecified",
  5336. "order": "uniqueOrder",
  5337. "status": "standard",
  5338. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/hyphens"
  5339. },
  5340. "image-orientation": {
  5341. "syntax": "from-image | <angle> | [ <angle>? flip ]",
  5342. "media": "visual",
  5343. "inherited": true,
  5344. "animationType": "discrete",
  5345. "percentages": "no",
  5346. "groups": [
  5347. "CSS Images"
  5348. ],
  5349. "initial": "from-image",
  5350. "appliesto": "allElements",
  5351. "computed": "angleRoundedToNextQuarter",
  5352. "order": "uniqueOrder",
  5353. "status": "standard",
  5354. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image-orientation"
  5355. },
  5356. "image-rendering": {
  5357. "syntax": "auto | crisp-edges | pixelated",
  5358. "media": "visual",
  5359. "inherited": true,
  5360. "animationType": "discrete",
  5361. "percentages": "no",
  5362. "groups": [
  5363. "CSS Images"
  5364. ],
  5365. "initial": "auto",
  5366. "appliesto": "allElements",
  5367. "computed": "asSpecified",
  5368. "order": "uniqueOrder",
  5369. "status": "standard",
  5370. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/image-rendering"
  5371. },
  5372. "image-resolution": {
  5373. "syntax": "[ from-image || <resolution> ] && snap?",
  5374. "media": "visual",
  5375. "inherited": true,
  5376. "animationType": "discrete",
  5377. "percentages": "no",
  5378. "groups": [
  5379. "CSS Images"
  5380. ],
  5381. "initial": "1dppx",
  5382. "appliesto": "allElements",
  5383. "computed": "asSpecifiedWithExceptionOfResolution",
  5384. "order": "uniqueOrder",
  5385. "status": "experimental"
  5386. },
  5387. "ime-mode": {
  5388. "syntax": "auto | normal | active | inactive | disabled",
  5389. "media": "interactive",
  5390. "inherited": false,
  5391. "animationType": "discrete",
  5392. "percentages": "no",
  5393. "groups": [
  5394. "CSS Basic User Interface"
  5395. ],
  5396. "initial": "auto",
  5397. "appliesto": "textFields",
  5398. "computed": "asSpecified",
  5399. "order": "uniqueOrder",
  5400. "status": "obsolete",
  5401. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ime-mode"
  5402. },
  5403. "initial-letter": {
  5404. "syntax": "normal | [ <number> <integer>? ]",
  5405. "media": "visual",
  5406. "inherited": false,
  5407. "animationType": "discrete",
  5408. "percentages": "no",
  5409. "groups": [
  5410. "CSS Inline"
  5411. ],
  5412. "initial": "normal",
  5413. "appliesto": "firstLetterPseudoElementsAndInlineLevelFirstChildren",
  5414. "computed": "asSpecified",
  5415. "order": "uniqueOrder",
  5416. "status": "experimental",
  5417. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/initial-letter"
  5418. },
  5419. "initial-letter-align": {
  5420. "syntax": "[ auto | alphabetic | hanging | ideographic ]",
  5421. "media": "visual",
  5422. "inherited": false,
  5423. "animationType": "discrete",
  5424. "percentages": "no",
  5425. "groups": [
  5426. "CSS Inline"
  5427. ],
  5428. "initial": "auto",
  5429. "appliesto": "firstLetterPseudoElementsAndInlineLevelFirstChildren",
  5430. "computed": "asSpecified",
  5431. "order": "uniqueOrder",
  5432. "status": "experimental",
  5433. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/initial-letter-align"
  5434. },
  5435. "inline-size": {
  5436. "syntax": "<'width'>",
  5437. "media": "visual",
  5438. "inherited": false,
  5439. "animationType": "lpc",
  5440. "percentages": "inlineSizeOfContainingBlock",
  5441. "groups": [
  5442. "CSS Logical Properties"
  5443. ],
  5444. "initial": "auto",
  5445. "appliesto": "sameAsWidthAndHeight",
  5446. "computed": "sameAsWidthAndHeight",
  5447. "order": "uniqueOrder",
  5448. "status": "standard",
  5449. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inline-size"
  5450. },
  5451. "inset": {
  5452. "syntax": "<'top'>{1,4}",
  5453. "media": "visual",
  5454. "inherited": false,
  5455. "animationType": "lpc",
  5456. "percentages": "logicalHeightOfContainingBlock",
  5457. "groups": [
  5458. "CSS Logical Properties"
  5459. ],
  5460. "initial": "auto",
  5461. "appliesto": "positionedElements",
  5462. "computed": "sameAsBoxOffsets",
  5463. "order": "uniqueOrder",
  5464. "status": "standard",
  5465. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset"
  5466. },
  5467. "inset-block": {
  5468. "syntax": "<'top'>{1,2}",
  5469. "media": "visual",
  5470. "inherited": false,
  5471. "animationType": "lpc",
  5472. "percentages": "logicalHeightOfContainingBlock",
  5473. "groups": [
  5474. "CSS Logical Properties"
  5475. ],
  5476. "initial": "auto",
  5477. "appliesto": "positionedElements",
  5478. "computed": "sameAsBoxOffsets",
  5479. "order": "uniqueOrder",
  5480. "status": "standard",
  5481. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block"
  5482. },
  5483. "inset-block-end": {
  5484. "syntax": "<'top'>",
  5485. "media": "visual",
  5486. "inherited": false,
  5487. "animationType": "lpc",
  5488. "percentages": "logicalHeightOfContainingBlock",
  5489. "groups": [
  5490. "CSS Logical Properties"
  5491. ],
  5492. "initial": "auto",
  5493. "appliesto": "positionedElements",
  5494. "computed": "sameAsBoxOffsets",
  5495. "order": "uniqueOrder",
  5496. "status": "standard",
  5497. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block-end"
  5498. },
  5499. "inset-block-start": {
  5500. "syntax": "<'top'>",
  5501. "media": "visual",
  5502. "inherited": false,
  5503. "animationType": "lpc",
  5504. "percentages": "logicalHeightOfContainingBlock",
  5505. "groups": [
  5506. "CSS Logical Properties"
  5507. ],
  5508. "initial": "auto",
  5509. "appliesto": "positionedElements",
  5510. "computed": "sameAsBoxOffsets",
  5511. "order": "uniqueOrder",
  5512. "status": "standard",
  5513. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-block-start"
  5514. },
  5515. "inset-inline": {
  5516. "syntax": "<'top'>{1,2}",
  5517. "media": "visual",
  5518. "inherited": false,
  5519. "animationType": "lpc",
  5520. "percentages": "logicalWidthOfContainingBlock",
  5521. "groups": [
  5522. "CSS Logical Properties"
  5523. ],
  5524. "initial": "auto",
  5525. "appliesto": "positionedElements",
  5526. "computed": "sameAsBoxOffsets",
  5527. "order": "uniqueOrder",
  5528. "status": "standard",
  5529. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline"
  5530. },
  5531. "inset-inline-end": {
  5532. "syntax": "<'top'>",
  5533. "media": "visual",
  5534. "inherited": false,
  5535. "animationType": "lpc",
  5536. "percentages": "logicalWidthOfContainingBlock",
  5537. "groups": [
  5538. "CSS Logical Properties"
  5539. ],
  5540. "initial": "auto",
  5541. "appliesto": "positionedElements",
  5542. "computed": "sameAsBoxOffsets",
  5543. "order": "uniqueOrder",
  5544. "status": "standard",
  5545. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline-end"
  5546. },
  5547. "inset-inline-start": {
  5548. "syntax": "<'top'>",
  5549. "media": "visual",
  5550. "inherited": false,
  5551. "animationType": "lpc",
  5552. "percentages": "logicalWidthOfContainingBlock",
  5553. "groups": [
  5554. "CSS Logical Properties"
  5555. ],
  5556. "initial": "auto",
  5557. "appliesto": "positionedElements",
  5558. "computed": "sameAsBoxOffsets",
  5559. "order": "uniqueOrder",
  5560. "status": "standard",
  5561. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/inset-inline-start"
  5562. },
  5563. "isolation": {
  5564. "syntax": "auto | isolate",
  5565. "media": "visual",
  5566. "inherited": false,
  5567. "animationType": "discrete",
  5568. "percentages": "no",
  5569. "groups": [
  5570. "Compositing and Blending"
  5571. ],
  5572. "initial": "auto",
  5573. "appliesto": "allElementsSVGContainerGraphicsAndGraphicsReferencingElements",
  5574. "computed": "asSpecified",
  5575. "order": "uniqueOrder",
  5576. "status": "standard",
  5577. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/isolation"
  5578. },
  5579. "justify-content": {
  5580. "syntax": "normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]",
  5581. "media": "visual",
  5582. "inherited": false,
  5583. "animationType": "discrete",
  5584. "percentages": "no",
  5585. "groups": [
  5586. "CSS Box Alignment"
  5587. ],
  5588. "initial": "normal",
  5589. "appliesto": "flexContainers",
  5590. "computed": "asSpecified",
  5591. "order": "uniqueOrder",
  5592. "status": "standard",
  5593. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-content"
  5594. },
  5595. "justify-items": {
  5596. "syntax": "normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ]",
  5597. "media": "visual",
  5598. "inherited": false,
  5599. "animationType": "discrete",
  5600. "percentages": "no",
  5601. "groups": [
  5602. "CSS Box Alignment"
  5603. ],
  5604. "initial": "legacy",
  5605. "appliesto": "allElements",
  5606. "computed": "asSpecified",
  5607. "order": "perGrammar",
  5608. "status": "standard",
  5609. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-items"
  5610. },
  5611. "justify-self": {
  5612. "syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ]",
  5613. "media": "visual",
  5614. "inherited": false,
  5615. "animationType": "discrete",
  5616. "percentages": "no",
  5617. "groups": [
  5618. "CSS Box Alignment"
  5619. ],
  5620. "initial": "auto",
  5621. "appliesto": "blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",
  5622. "computed": "asSpecified",
  5623. "order": "uniqueOrder",
  5624. "status": "standard",
  5625. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-self"
  5626. },
  5627. "justify-tracks": {
  5628. "syntax": "[ normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ] ]#",
  5629. "media": "visual",
  5630. "inherited": false,
  5631. "animationType": "discrete",
  5632. "percentages": "no",
  5633. "groups": [
  5634. "CSS Grid Layout"
  5635. ],
  5636. "initial": "normal",
  5637. "appliesto": "gridContainersWithMasonryLayoutInTheirInlineAxis",
  5638. "computed": "asSpecified",
  5639. "order": "uniqueOrder",
  5640. "status": "experimental",
  5641. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/justify-tracks"
  5642. },
  5643. "left": {
  5644. "syntax": "<length> | <percentage> | auto",
  5645. "media": "visual",
  5646. "inherited": false,
  5647. "animationType": "lpc",
  5648. "percentages": "referToWidthOfContainingBlock",
  5649. "groups": [
  5650. "CSS Positioning"
  5651. ],
  5652. "initial": "auto",
  5653. "appliesto": "positionedElements",
  5654. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5655. "order": "uniqueOrder",
  5656. "status": "standard",
  5657. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/left"
  5658. },
  5659. "letter-spacing": {
  5660. "syntax": "normal | <length>",
  5661. "media": "visual",
  5662. "inherited": true,
  5663. "animationType": "length",
  5664. "percentages": "no",
  5665. "groups": [
  5666. "CSS Text"
  5667. ],
  5668. "initial": "normal",
  5669. "appliesto": "allElements",
  5670. "computed": "optimumValueOfAbsoluteLengthOrNormal",
  5671. "order": "uniqueOrder",
  5672. "alsoAppliesTo": [
  5673. "::first-letter",
  5674. "::first-line"
  5675. ],
  5676. "status": "standard",
  5677. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/letter-spacing"
  5678. },
  5679. "line-break": {
  5680. "syntax": "auto | loose | normal | strict | anywhere",
  5681. "media": "visual",
  5682. "inherited": true,
  5683. "animationType": "discrete",
  5684. "percentages": "no",
  5685. "groups": [
  5686. "CSS Text"
  5687. ],
  5688. "initial": "auto",
  5689. "appliesto": "allElements",
  5690. "computed": "asSpecified",
  5691. "order": "uniqueOrder",
  5692. "status": "standard",
  5693. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-break"
  5694. },
  5695. "line-clamp": {
  5696. "syntax": "none | <integer>",
  5697. "media": "visual",
  5698. "inherited": false,
  5699. "animationType": "integer",
  5700. "percentages": "no",
  5701. "groups": [
  5702. "CSS Overflow"
  5703. ],
  5704. "initial": "none",
  5705. "appliesto": "blockContainersExceptMultiColumnContainers",
  5706. "computed": "asSpecified",
  5707. "order": "perGrammar",
  5708. "status": "experimental"
  5709. },
  5710. "line-height": {
  5711. "syntax": "normal | <number> | <length> | <percentage>",
  5712. "media": "visual",
  5713. "inherited": true,
  5714. "animationType": "numberOrLength",
  5715. "percentages": "referToElementFontSize",
  5716. "groups": [
  5717. "CSS Fonts"
  5718. ],
  5719. "initial": "normal",
  5720. "appliesto": "allElements",
  5721. "computed": "absoluteLengthOrAsSpecified",
  5722. "order": "uniqueOrder",
  5723. "alsoAppliesTo": [
  5724. "::first-letter",
  5725. "::first-line",
  5726. "::placeholder"
  5727. ],
  5728. "status": "standard",
  5729. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-height"
  5730. },
  5731. "line-height-step": {
  5732. "syntax": "<length>",
  5733. "media": "visual",
  5734. "inherited": true,
  5735. "animationType": "discrete",
  5736. "percentages": "no",
  5737. "groups": [
  5738. "CSS Fonts"
  5739. ],
  5740. "initial": "0",
  5741. "appliesto": "blockContainers",
  5742. "computed": "absoluteLength",
  5743. "order": "perGrammar",
  5744. "status": "experimental",
  5745. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/line-height-step"
  5746. },
  5747. "list-style": {
  5748. "syntax": "<'list-style-type'> || <'list-style-position'> || <'list-style-image'>",
  5749. "media": "visual",
  5750. "inherited": true,
  5751. "animationType": "discrete",
  5752. "percentages": "no",
  5753. "groups": [
  5754. "CSS Lists and Counters"
  5755. ],
  5756. "initial": [
  5757. "list-style-type",
  5758. "list-style-position",
  5759. "list-style-image"
  5760. ],
  5761. "appliesto": "listItems",
  5762. "computed": [
  5763. "list-style-image",
  5764. "list-style-position",
  5765. "list-style-type"
  5766. ],
  5767. "order": "orderOfAppearance",
  5768. "status": "standard",
  5769. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style"
  5770. },
  5771. "list-style-image": {
  5772. "syntax": "<url> | none",
  5773. "media": "visual",
  5774. "inherited": true,
  5775. "animationType": "discrete",
  5776. "percentages": "no",
  5777. "groups": [
  5778. "CSS Lists and Counters"
  5779. ],
  5780. "initial": "none",
  5781. "appliesto": "listItems",
  5782. "computed": "noneOrImageWithAbsoluteURI",
  5783. "order": "uniqueOrder",
  5784. "status": "standard",
  5785. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style-image"
  5786. },
  5787. "list-style-position": {
  5788. "syntax": "inside | outside",
  5789. "media": "visual",
  5790. "inherited": true,
  5791. "animationType": "discrete",
  5792. "percentages": "no",
  5793. "groups": [
  5794. "CSS Lists and Counters"
  5795. ],
  5796. "initial": "outside",
  5797. "appliesto": "listItems",
  5798. "computed": "asSpecified",
  5799. "order": "uniqueOrder",
  5800. "status": "standard",
  5801. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style-position"
  5802. },
  5803. "list-style-type": {
  5804. "syntax": "<counter-style> | <string> | none",
  5805. "media": "visual",
  5806. "inherited": true,
  5807. "animationType": "discrete",
  5808. "percentages": "no",
  5809. "groups": [
  5810. "CSS Lists and Counters"
  5811. ],
  5812. "initial": "disc",
  5813. "appliesto": "listItems",
  5814. "computed": "asSpecified",
  5815. "order": "uniqueOrder",
  5816. "status": "standard",
  5817. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/list-style-type"
  5818. },
  5819. "margin": {
  5820. "syntax": "[ <length> | <percentage> | auto ]{1,4}",
  5821. "media": "visual",
  5822. "inherited": false,
  5823. "animationType": "length",
  5824. "percentages": "referToWidthOfContainingBlock",
  5825. "groups": [
  5826. "CSS Box Model"
  5827. ],
  5828. "initial": [
  5829. "margin-bottom",
  5830. "margin-left",
  5831. "margin-right",
  5832. "margin-top"
  5833. ],
  5834. "appliesto": "allElementsExceptTableDisplayTypes",
  5835. "computed": [
  5836. "margin-bottom",
  5837. "margin-left",
  5838. "margin-right",
  5839. "margin-top"
  5840. ],
  5841. "order": "uniqueOrder",
  5842. "alsoAppliesTo": [
  5843. "::first-letter",
  5844. "::first-line"
  5845. ],
  5846. "status": "standard",
  5847. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin"
  5848. },
  5849. "margin-block": {
  5850. "syntax": "<'margin-left'>{1,2}",
  5851. "media": "visual",
  5852. "inherited": false,
  5853. "animationType": "discrete",
  5854. "percentages": "dependsOnLayoutModel",
  5855. "groups": [
  5856. "CSS Logical Properties"
  5857. ],
  5858. "initial": "0",
  5859. "appliesto": "sameAsMargin",
  5860. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5861. "order": "uniqueOrder",
  5862. "status": "standard",
  5863. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block"
  5864. },
  5865. "margin-block-end": {
  5866. "syntax": "<'margin-left'>",
  5867. "media": "visual",
  5868. "inherited": false,
  5869. "animationType": "length",
  5870. "percentages": "dependsOnLayoutModel",
  5871. "groups": [
  5872. "CSS Logical Properties"
  5873. ],
  5874. "initial": "0",
  5875. "appliesto": "sameAsMargin",
  5876. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5877. "order": "uniqueOrder",
  5878. "status": "standard",
  5879. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block-end"
  5880. },
  5881. "margin-block-start": {
  5882. "syntax": "<'margin-left'>",
  5883. "media": "visual",
  5884. "inherited": false,
  5885. "animationType": "length",
  5886. "percentages": "dependsOnLayoutModel",
  5887. "groups": [
  5888. "CSS Logical Properties"
  5889. ],
  5890. "initial": "0",
  5891. "appliesto": "sameAsMargin",
  5892. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5893. "order": "uniqueOrder",
  5894. "status": "standard",
  5895. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-block-start"
  5896. },
  5897. "margin-bottom": {
  5898. "syntax": "<length> | <percentage> | auto",
  5899. "media": "visual",
  5900. "inherited": false,
  5901. "animationType": "length",
  5902. "percentages": "referToWidthOfContainingBlock",
  5903. "groups": [
  5904. "CSS Box Model"
  5905. ],
  5906. "initial": "0",
  5907. "appliesto": "allElementsExceptTableDisplayTypes",
  5908. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5909. "order": "uniqueOrder",
  5910. "alsoAppliesTo": [
  5911. "::first-letter",
  5912. "::first-line"
  5913. ],
  5914. "status": "standard",
  5915. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-bottom"
  5916. },
  5917. "margin-inline": {
  5918. "syntax": "<'margin-left'>{1,2}",
  5919. "media": "visual",
  5920. "inherited": false,
  5921. "animationType": "discrete",
  5922. "percentages": "dependsOnLayoutModel",
  5923. "groups": [
  5924. "CSS Logical Properties"
  5925. ],
  5926. "initial": "0",
  5927. "appliesto": "sameAsMargin",
  5928. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5929. "order": "uniqueOrder",
  5930. "status": "standard",
  5931. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline"
  5932. },
  5933. "margin-inline-end": {
  5934. "syntax": "<'margin-left'>",
  5935. "media": "visual",
  5936. "inherited": false,
  5937. "animationType": "length",
  5938. "percentages": "dependsOnLayoutModel",
  5939. "groups": [
  5940. "CSS Logical Properties"
  5941. ],
  5942. "initial": "0",
  5943. "appliesto": "sameAsMargin",
  5944. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5945. "order": "uniqueOrder",
  5946. "status": "standard",
  5947. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline-end"
  5948. },
  5949. "margin-inline-start": {
  5950. "syntax": "<'margin-left'>",
  5951. "media": "visual",
  5952. "inherited": false,
  5953. "animationType": "length",
  5954. "percentages": "dependsOnLayoutModel",
  5955. "groups": [
  5956. "CSS Logical Properties"
  5957. ],
  5958. "initial": "0",
  5959. "appliesto": "sameAsMargin",
  5960. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  5961. "order": "uniqueOrder",
  5962. "status": "standard",
  5963. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-inline-start"
  5964. },
  5965. "margin-left": {
  5966. "syntax": "<length> | <percentage> | auto",
  5967. "media": "visual",
  5968. "inherited": false,
  5969. "animationType": "length",
  5970. "percentages": "referToWidthOfContainingBlock",
  5971. "groups": [
  5972. "CSS Box Model"
  5973. ],
  5974. "initial": "0",
  5975. "appliesto": "allElementsExceptTableDisplayTypes",
  5976. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5977. "order": "uniqueOrder",
  5978. "alsoAppliesTo": [
  5979. "::first-letter",
  5980. "::first-line"
  5981. ],
  5982. "status": "standard",
  5983. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-left"
  5984. },
  5985. "margin-right": {
  5986. "syntax": "<length> | <percentage> | auto",
  5987. "media": "visual",
  5988. "inherited": false,
  5989. "animationType": "length",
  5990. "percentages": "referToWidthOfContainingBlock",
  5991. "groups": [
  5992. "CSS Box Model"
  5993. ],
  5994. "initial": "0",
  5995. "appliesto": "allElementsExceptTableDisplayTypes",
  5996. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  5997. "order": "uniqueOrder",
  5998. "alsoAppliesTo": [
  5999. "::first-letter",
  6000. "::first-line"
  6001. ],
  6002. "status": "standard",
  6003. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-right"
  6004. },
  6005. "margin-top": {
  6006. "syntax": "<length> | <percentage> | auto",
  6007. "media": "visual",
  6008. "inherited": false,
  6009. "animationType": "length",
  6010. "percentages": "referToWidthOfContainingBlock",
  6011. "groups": [
  6012. "CSS Box Model"
  6013. ],
  6014. "initial": "0",
  6015. "appliesto": "allElementsExceptTableDisplayTypes",
  6016. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  6017. "order": "uniqueOrder",
  6018. "alsoAppliesTo": [
  6019. "::first-letter",
  6020. "::first-line"
  6021. ],
  6022. "status": "standard",
  6023. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-top"
  6024. },
  6025. "margin-trim": {
  6026. "syntax": "none | in-flow | all",
  6027. "media": "visual",
  6028. "inherited": false,
  6029. "animationType": "discrete",
  6030. "percentages": "no",
  6031. "groups": [
  6032. "CSS Box Model"
  6033. ],
  6034. "initial": "none",
  6035. "appliesto": "blockContainersAndMultiColumnContainers",
  6036. "computed": "asSpecified",
  6037. "order": "perGrammar",
  6038. "alsoAppliesTo": [
  6039. "::first-letter",
  6040. "::first-line"
  6041. ],
  6042. "status": "experimental",
  6043. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/margin-trim"
  6044. },
  6045. "mask": {
  6046. "syntax": "<mask-layer>#",
  6047. "media": "visual",
  6048. "inherited": false,
  6049. "animationType": [
  6050. "mask-image",
  6051. "mask-mode",
  6052. "mask-repeat",
  6053. "mask-position",
  6054. "mask-clip",
  6055. "mask-origin",
  6056. "mask-size",
  6057. "mask-composite"
  6058. ],
  6059. "percentages": [
  6060. "mask-position"
  6061. ],
  6062. "groups": [
  6063. "CSS Masking"
  6064. ],
  6065. "initial": [
  6066. "mask-image",
  6067. "mask-mode",
  6068. "mask-repeat",
  6069. "mask-position",
  6070. "mask-clip",
  6071. "mask-origin",
  6072. "mask-size",
  6073. "mask-composite"
  6074. ],
  6075. "appliesto": "allElementsSVGContainerElements",
  6076. "computed": [
  6077. "mask-image",
  6078. "mask-mode",
  6079. "mask-repeat",
  6080. "mask-position",
  6081. "mask-clip",
  6082. "mask-origin",
  6083. "mask-size",
  6084. "mask-composite"
  6085. ],
  6086. "order": "perGrammar",
  6087. "stacking": true,
  6088. "status": "standard",
  6089. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask"
  6090. },
  6091. "mask-border": {
  6092. "syntax": "<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>",
  6093. "media": "visual",
  6094. "inherited": false,
  6095. "animationType": [
  6096. "mask-border-mode",
  6097. "mask-border-outset",
  6098. "mask-border-repeat",
  6099. "mask-border-slice",
  6100. "mask-border-source",
  6101. "mask-border-width"
  6102. ],
  6103. "percentages": [
  6104. "mask-border-slice",
  6105. "mask-border-width"
  6106. ],
  6107. "groups": [
  6108. "CSS Masking"
  6109. ],
  6110. "initial": [
  6111. "mask-border-mode",
  6112. "mask-border-outset",
  6113. "mask-border-repeat",
  6114. "mask-border-slice",
  6115. "mask-border-source",
  6116. "mask-border-width"
  6117. ],
  6118. "appliesto": "allElementsSVGContainerElements",
  6119. "computed": [
  6120. "mask-border-mode",
  6121. "mask-border-outset",
  6122. "mask-border-repeat",
  6123. "mask-border-slice",
  6124. "mask-border-source",
  6125. "mask-border-width"
  6126. ],
  6127. "order": "perGrammar",
  6128. "stacking": true,
  6129. "status": "standard",
  6130. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border"
  6131. },
  6132. "mask-border-mode": {
  6133. "syntax": "luminance | alpha",
  6134. "media": "visual",
  6135. "inherited": false,
  6136. "animationType": "discrete",
  6137. "percentages": "no",
  6138. "groups": [
  6139. "CSS Masking"
  6140. ],
  6141. "initial": "alpha",
  6142. "appliesto": "allElementsSVGContainerElements",
  6143. "computed": "asSpecified",
  6144. "order": "perGrammar",
  6145. "status": "standard",
  6146. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-mode"
  6147. },
  6148. "mask-border-outset": {
  6149. "syntax": "[ <length> | <number> ]{1,4}",
  6150. "media": "visual",
  6151. "inherited": false,
  6152. "animationType": "discrete",
  6153. "percentages": "no",
  6154. "groups": [
  6155. "CSS Masking"
  6156. ],
  6157. "initial": "0",
  6158. "appliesto": "allElementsSVGContainerElements",
  6159. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  6160. "order": "perGrammar",
  6161. "status": "standard",
  6162. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-outset"
  6163. },
  6164. "mask-border-repeat": {
  6165. "syntax": "[ stretch | repeat | round | space ]{1,2}",
  6166. "media": "visual",
  6167. "inherited": false,
  6168. "animationType": "discrete",
  6169. "percentages": "no",
  6170. "groups": [
  6171. "CSS Masking"
  6172. ],
  6173. "initial": "stretch",
  6174. "appliesto": "allElementsSVGContainerElements",
  6175. "computed": "asSpecified",
  6176. "order": "perGrammar",
  6177. "status": "standard",
  6178. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-repeat"
  6179. },
  6180. "mask-border-slice": {
  6181. "syntax": "<number-percentage>{1,4} fill?",
  6182. "media": "visual",
  6183. "inherited": false,
  6184. "animationType": "discrete",
  6185. "percentages": "referToSizeOfMaskBorderImage",
  6186. "groups": [
  6187. "CSS Masking"
  6188. ],
  6189. "initial": "0",
  6190. "appliesto": "allElementsSVGContainerElements",
  6191. "computed": "asSpecified",
  6192. "order": "perGrammar",
  6193. "status": "standard",
  6194. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-slice"
  6195. },
  6196. "mask-border-source": {
  6197. "syntax": "none | <image>",
  6198. "media": "visual",
  6199. "inherited": false,
  6200. "animationType": "discrete",
  6201. "percentages": "no",
  6202. "groups": [
  6203. "CSS Masking"
  6204. ],
  6205. "initial": "none",
  6206. "appliesto": "allElementsSVGContainerElements",
  6207. "computed": "asSpecifiedURLsAbsolute",
  6208. "order": "perGrammar",
  6209. "status": "standard",
  6210. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-source"
  6211. },
  6212. "mask-border-width": {
  6213. "syntax": "[ <length-percentage> | <number> | auto ]{1,4}",
  6214. "media": "visual",
  6215. "inherited": false,
  6216. "animationType": "discrete",
  6217. "percentages": "relativeToMaskBorderImageArea",
  6218. "groups": [
  6219. "CSS Masking"
  6220. ],
  6221. "initial": "auto",
  6222. "appliesto": "allElementsSVGContainerElements",
  6223. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  6224. "order": "perGrammar",
  6225. "status": "standard",
  6226. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-border-width"
  6227. },
  6228. "mask-clip": {
  6229. "syntax": "[ <geometry-box> | no-clip ]#",
  6230. "media": "visual",
  6231. "inherited": false,
  6232. "animationType": "discrete",
  6233. "percentages": "no",
  6234. "groups": [
  6235. "CSS Masking"
  6236. ],
  6237. "initial": "border-box",
  6238. "appliesto": "allElementsSVGContainerElements",
  6239. "computed": "asSpecified",
  6240. "order": "perGrammar",
  6241. "status": "standard",
  6242. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-clip"
  6243. },
  6244. "mask-composite": {
  6245. "syntax": "<compositing-operator>#",
  6246. "media": "visual",
  6247. "inherited": false,
  6248. "animationType": "discrete",
  6249. "percentages": "no",
  6250. "groups": [
  6251. "CSS Masking"
  6252. ],
  6253. "initial": "add",
  6254. "appliesto": "allElementsSVGContainerElements",
  6255. "computed": "asSpecified",
  6256. "order": "perGrammar",
  6257. "status": "standard",
  6258. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-composite"
  6259. },
  6260. "mask-image": {
  6261. "syntax": "<mask-reference>#",
  6262. "media": "visual",
  6263. "inherited": false,
  6264. "animationType": "discrete",
  6265. "percentages": "no",
  6266. "groups": [
  6267. "CSS Masking"
  6268. ],
  6269. "initial": "none",
  6270. "appliesto": "allElementsSVGContainerElements",
  6271. "computed": "asSpecifiedURLsAbsolute",
  6272. "order": "perGrammar",
  6273. "status": "standard",
  6274. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-image"
  6275. },
  6276. "mask-mode": {
  6277. "syntax": "<masking-mode>#",
  6278. "media": "visual",
  6279. "inherited": false,
  6280. "animationType": "discrete",
  6281. "percentages": "no",
  6282. "groups": [
  6283. "CSS Masking"
  6284. ],
  6285. "initial": "match-source",
  6286. "appliesto": "allElementsSVGContainerElements",
  6287. "computed": "asSpecified",
  6288. "order": "perGrammar",
  6289. "status": "standard",
  6290. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-mode"
  6291. },
  6292. "mask-origin": {
  6293. "syntax": "<geometry-box>#",
  6294. "media": "visual",
  6295. "inherited": false,
  6296. "animationType": "discrete",
  6297. "percentages": "no",
  6298. "groups": [
  6299. "CSS Masking"
  6300. ],
  6301. "initial": "border-box",
  6302. "appliesto": "allElementsSVGContainerElements",
  6303. "computed": "asSpecified",
  6304. "order": "perGrammar",
  6305. "status": "standard",
  6306. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-origin"
  6307. },
  6308. "mask-position": {
  6309. "syntax": "<position>#",
  6310. "media": "visual",
  6311. "inherited": false,
  6312. "animationType": "repeatableListOfSimpleListOfLpc",
  6313. "percentages": "referToSizeOfMaskPaintingArea",
  6314. "groups": [
  6315. "CSS Masking"
  6316. ],
  6317. "initial": "center",
  6318. "appliesto": "allElementsSVGContainerElements",
  6319. "computed": "consistsOfTwoKeywordsForOriginAndOffsets",
  6320. "order": "perGrammar",
  6321. "status": "standard",
  6322. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-position"
  6323. },
  6324. "mask-repeat": {
  6325. "syntax": "<repeat-style>#",
  6326. "media": "visual",
  6327. "inherited": false,
  6328. "animationType": "discrete",
  6329. "percentages": "no",
  6330. "groups": [
  6331. "CSS Masking"
  6332. ],
  6333. "initial": "no-repeat",
  6334. "appliesto": "allElementsSVGContainerElements",
  6335. "computed": "consistsOfTwoDimensionKeywords",
  6336. "order": "perGrammar",
  6337. "status": "standard",
  6338. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-repeat"
  6339. },
  6340. "mask-size": {
  6341. "syntax": "<bg-size>#",
  6342. "media": "visual",
  6343. "inherited": false,
  6344. "animationType": "repeatableListOfSimpleListOfLpc",
  6345. "percentages": "no",
  6346. "groups": [
  6347. "CSS Masking"
  6348. ],
  6349. "initial": "auto",
  6350. "appliesto": "allElementsSVGContainerElements",
  6351. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  6352. "order": "perGrammar",
  6353. "status": "standard",
  6354. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-size"
  6355. },
  6356. "mask-type": {
  6357. "syntax": "luminance | alpha",
  6358. "media": "visual",
  6359. "inherited": false,
  6360. "animationType": "discrete",
  6361. "percentages": "no",
  6362. "groups": [
  6363. "CSS Masking"
  6364. ],
  6365. "initial": "luminance",
  6366. "appliesto": "maskElements",
  6367. "computed": "asSpecified",
  6368. "order": "perGrammar",
  6369. "status": "standard",
  6370. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mask-type"
  6371. },
  6372. "masonry-auto-flow": {
  6373. "syntax": "[ pack | next ] || [ definite-first | ordered ]",
  6374. "media": "visual",
  6375. "inherited": false,
  6376. "animationType": "discrete",
  6377. "percentages": "no",
  6378. "groups": [
  6379. "CSS Grid Layout"
  6380. ],
  6381. "initial": "pack",
  6382. "appliesto": "gridContainersWithMasonryLayout",
  6383. "computed": "asSpecified",
  6384. "order": "uniqueOrder",
  6385. "status": "experimental",
  6386. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/masonry-auto-flow"
  6387. },
  6388. "math-style": {
  6389. "syntax": "normal | compact",
  6390. "media": "visual",
  6391. "inherited": true,
  6392. "animationType": "notAnimatable",
  6393. "percentages": "no",
  6394. "groups": [
  6395. "MathML"
  6396. ],
  6397. "initial": "normal",
  6398. "appliesto": "allElements",
  6399. "computed": "asSpecified",
  6400. "order": "perGrammar",
  6401. "status": "standard",
  6402. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/math-style"
  6403. },
  6404. "max-block-size": {
  6405. "syntax": "<'max-width'>",
  6406. "media": "visual",
  6407. "inherited": false,
  6408. "animationType": "lpc",
  6409. "percentages": "blockSizeOfContainingBlock",
  6410. "groups": [
  6411. "CSS Logical Properties"
  6412. ],
  6413. "initial": "0",
  6414. "appliesto": "sameAsWidthAndHeight",
  6415. "computed": "sameAsMaxWidthAndMaxHeight",
  6416. "order": "uniqueOrder",
  6417. "status": "standard",
  6418. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-block-size"
  6419. },
  6420. "max-height": {
  6421. "syntax": "none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)",
  6422. "media": "visual",
  6423. "inherited": false,
  6424. "animationType": "lpc",
  6425. "percentages": "regardingHeightOfGeneratedBoxContainingBlockPercentagesNone",
  6426. "groups": [
  6427. "CSS Box Model"
  6428. ],
  6429. "initial": "none",
  6430. "appliesto": "allElementsButNonReplacedAndTableColumns",
  6431. "computed": "percentageAsSpecifiedAbsoluteLengthOrNone",
  6432. "order": "uniqueOrder",
  6433. "status": "standard",
  6434. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-height"
  6435. },
  6436. "max-inline-size": {
  6437. "syntax": "<'max-width'>",
  6438. "media": "visual",
  6439. "inherited": false,
  6440. "animationType": "lpc",
  6441. "percentages": "inlineSizeOfContainingBlock",
  6442. "groups": [
  6443. "CSS Logical Properties"
  6444. ],
  6445. "initial": "0",
  6446. "appliesto": "sameAsWidthAndHeight",
  6447. "computed": "sameAsMaxWidthAndMaxHeight",
  6448. "order": "uniqueOrder",
  6449. "status": "standard",
  6450. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-inline-size"
  6451. },
  6452. "max-lines": {
  6453. "syntax": "none | <integer>",
  6454. "media": "visual",
  6455. "inherited": false,
  6456. "animationType": "integer",
  6457. "percentages": "no",
  6458. "groups": [
  6459. "CSS Overflow"
  6460. ],
  6461. "initial": "none",
  6462. "appliesto": "blockContainersExceptMultiColumnContainers",
  6463. "computed": "asSpecified",
  6464. "order": "perGrammar",
  6465. "status": "experimental"
  6466. },
  6467. "max-width": {
  6468. "syntax": "none | <length-percentage> | min-content | max-content | fit-content(<length-percentage>)",
  6469. "media": "visual",
  6470. "inherited": false,
  6471. "animationType": "lpc",
  6472. "percentages": "referToWidthOfContainingBlock",
  6473. "groups": [
  6474. "CSS Box Model"
  6475. ],
  6476. "initial": "none",
  6477. "appliesto": "allElementsButNonReplacedAndTableRows",
  6478. "computed": "percentageAsSpecifiedAbsoluteLengthOrNone",
  6479. "order": "uniqueOrder",
  6480. "status": "standard",
  6481. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/max-width"
  6482. },
  6483. "min-block-size": {
  6484. "syntax": "<'min-width'>",
  6485. "media": "visual",
  6486. "inherited": false,
  6487. "animationType": "lpc",
  6488. "percentages": "blockSizeOfContainingBlock",
  6489. "groups": [
  6490. "CSS Logical Properties"
  6491. ],
  6492. "initial": "0",
  6493. "appliesto": "sameAsWidthAndHeight",
  6494. "computed": "sameAsMinWidthAndMinHeight",
  6495. "order": "uniqueOrder",
  6496. "status": "standard",
  6497. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-block-size"
  6498. },
  6499. "min-height": {
  6500. "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",
  6501. "media": "visual",
  6502. "inherited": false,
  6503. "animationType": "lpc",
  6504. "percentages": "regardingHeightOfGeneratedBoxContainingBlockPercentages0",
  6505. "groups": [
  6506. "CSS Box Model"
  6507. ],
  6508. "initial": "auto",
  6509. "appliesto": "allElementsButNonReplacedAndTableColumns",
  6510. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  6511. "order": "uniqueOrder",
  6512. "status": "standard",
  6513. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-height"
  6514. },
  6515. "min-inline-size": {
  6516. "syntax": "<'min-width'>",
  6517. "media": "visual",
  6518. "inherited": false,
  6519. "animationType": "lpc",
  6520. "percentages": "inlineSizeOfContainingBlock",
  6521. "groups": [
  6522. "CSS Logical Properties"
  6523. ],
  6524. "initial": "0",
  6525. "appliesto": "sameAsWidthAndHeight",
  6526. "computed": "sameAsMinWidthAndMinHeight",
  6527. "order": "uniqueOrder",
  6528. "status": "standard",
  6529. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-inline-size"
  6530. },
  6531. "min-width": {
  6532. "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",
  6533. "media": "visual",
  6534. "inherited": false,
  6535. "animationType": "lpc",
  6536. "percentages": "referToWidthOfContainingBlock",
  6537. "groups": [
  6538. "CSS Box Model"
  6539. ],
  6540. "initial": "auto",
  6541. "appliesto": "allElementsButNonReplacedAndTableRows",
  6542. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  6543. "order": "uniqueOrder",
  6544. "status": "standard",
  6545. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/min-width"
  6546. },
  6547. "mix-blend-mode": {
  6548. "syntax": "<blend-mode>",
  6549. "media": "visual",
  6550. "inherited": false,
  6551. "animationType": "discrete",
  6552. "percentages": "no",
  6553. "groups": [
  6554. "Compositing and Blending"
  6555. ],
  6556. "initial": "normal",
  6557. "appliesto": "allElements",
  6558. "computed": "asSpecified",
  6559. "order": "uniqueOrder",
  6560. "stacking": true,
  6561. "status": "standard",
  6562. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/mix-blend-mode"
  6563. },
  6564. "object-fit": {
  6565. "syntax": "fill | contain | cover | none | scale-down",
  6566. "media": "visual",
  6567. "inherited": false,
  6568. "animationType": "discrete",
  6569. "percentages": "no",
  6570. "groups": [
  6571. "CSS Images"
  6572. ],
  6573. "initial": "fill",
  6574. "appliesto": "replacedElements",
  6575. "computed": "asSpecified",
  6576. "order": "uniqueOrder",
  6577. "status": "standard",
  6578. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/object-fit"
  6579. },
  6580. "object-position": {
  6581. "syntax": "<position>",
  6582. "media": "visual",
  6583. "inherited": true,
  6584. "animationType": "repeatableListOfSimpleListOfLpc",
  6585. "percentages": "referToWidthAndHeightOfElement",
  6586. "groups": [
  6587. "CSS Images"
  6588. ],
  6589. "initial": "50% 50%",
  6590. "appliesto": "replacedElements",
  6591. "computed": "asSpecified",
  6592. "order": "uniqueOrder",
  6593. "status": "standard",
  6594. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/object-position"
  6595. },
  6596. "offset": {
  6597. "syntax": "[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?",
  6598. "media": "visual",
  6599. "inherited": false,
  6600. "animationType": [
  6601. "offset-position",
  6602. "offset-path",
  6603. "offset-distance",
  6604. "offset-anchor",
  6605. "offset-rotate"
  6606. ],
  6607. "percentages": [
  6608. "offset-position",
  6609. "offset-distance",
  6610. "offset-anchor"
  6611. ],
  6612. "groups": [
  6613. "CSS Motion Path"
  6614. ],
  6615. "initial": [
  6616. "offset-position",
  6617. "offset-path",
  6618. "offset-distance",
  6619. "offset-anchor",
  6620. "offset-rotate"
  6621. ],
  6622. "appliesto": "transformableElements",
  6623. "computed": [
  6624. "offset-position",
  6625. "offset-path",
  6626. "offset-distance",
  6627. "offset-anchor",
  6628. "offset-rotate"
  6629. ],
  6630. "order": "perGrammar",
  6631. "stacking": true,
  6632. "status": "standard",
  6633. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset"
  6634. },
  6635. "offset-anchor": {
  6636. "syntax": "auto | <position>",
  6637. "media": "visual",
  6638. "inherited": false,
  6639. "animationType": "position",
  6640. "percentages": "relativeToWidthAndHeight",
  6641. "groups": [
  6642. "CSS Motion Path"
  6643. ],
  6644. "initial": "auto",
  6645. "appliesto": "transformableElements",
  6646. "computed": "forLengthAbsoluteValueOtherwisePercentage",
  6647. "order": "perGrammar",
  6648. "status": "standard"
  6649. },
  6650. "offset-distance": {
  6651. "syntax": "<length-percentage>",
  6652. "media": "visual",
  6653. "inherited": false,
  6654. "animationType": "lpc",
  6655. "percentages": "referToTotalPathLength",
  6656. "groups": [
  6657. "CSS Motion Path"
  6658. ],
  6659. "initial": "0",
  6660. "appliesto": "transformableElements",
  6661. "computed": "forLengthAbsoluteValueOtherwisePercentage",
  6662. "order": "perGrammar",
  6663. "status": "standard",
  6664. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-distance"
  6665. },
  6666. "offset-path": {
  6667. "syntax": "none | ray( [ <angle> && <size> && contain? ] ) | <path()> | <url> | [ <basic-shape> || <geometry-box> ]",
  6668. "media": "visual",
  6669. "inherited": false,
  6670. "animationType": "angleOrBasicShapeOrPath",
  6671. "percentages": "no",
  6672. "groups": [
  6673. "CSS Motion Path"
  6674. ],
  6675. "initial": "none",
  6676. "appliesto": "transformableElements",
  6677. "computed": "asSpecified",
  6678. "order": "perGrammar",
  6679. "stacking": true,
  6680. "status": "standard",
  6681. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-path"
  6682. },
  6683. "offset-position": {
  6684. "syntax": "auto | <position>",
  6685. "media": "visual",
  6686. "inherited": false,
  6687. "animationType": "position",
  6688. "percentages": "referToSizeOfContainingBlock",
  6689. "groups": [
  6690. "CSS Motion Path"
  6691. ],
  6692. "initial": "auto",
  6693. "appliesto": "transformableElements",
  6694. "computed": "forLengthAbsoluteValueOtherwisePercentage",
  6695. "order": "perGrammar",
  6696. "status": "experimental"
  6697. },
  6698. "offset-rotate": {
  6699. "syntax": "[ auto | reverse ] || <angle>",
  6700. "media": "visual",
  6701. "inherited": false,
  6702. "animationType": "angleOrBasicShapeOrPath",
  6703. "percentages": "no",
  6704. "groups": [
  6705. "CSS Motion Path"
  6706. ],
  6707. "initial": "auto",
  6708. "appliesto": "transformableElements",
  6709. "computed": "asSpecified",
  6710. "order": "perGrammar",
  6711. "status": "standard",
  6712. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/offset-rotate"
  6713. },
  6714. "opacity": {
  6715. "syntax": "<alpha-value>",
  6716. "media": "visual",
  6717. "inherited": false,
  6718. "animationType": "number",
  6719. "percentages": "no",
  6720. "groups": [
  6721. "CSS Color"
  6722. ],
  6723. "initial": "1.0",
  6724. "appliesto": "allElements",
  6725. "computed": "specifiedValueClipped0To1",
  6726. "order": "uniqueOrder",
  6727. "alsoAppliesTo": [
  6728. "::placeholder"
  6729. ],
  6730. "status": "standard",
  6731. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/opacity"
  6732. },
  6733. "order": {
  6734. "syntax": "<integer>",
  6735. "media": "visual",
  6736. "inherited": false,
  6737. "animationType": "integer",
  6738. "percentages": "no",
  6739. "groups": [
  6740. "CSS Flexible Box Layout"
  6741. ],
  6742. "initial": "0",
  6743. "appliesto": "flexItemsGridItemsAbsolutelyPositionedContainerChildren",
  6744. "computed": "asSpecified",
  6745. "order": "uniqueOrder",
  6746. "status": "standard",
  6747. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/order"
  6748. },
  6749. "orphans": {
  6750. "syntax": "<integer>",
  6751. "media": "visual",
  6752. "inherited": true,
  6753. "animationType": "discrete",
  6754. "percentages": "no",
  6755. "groups": [
  6756. "CSS Fragmentation"
  6757. ],
  6758. "initial": "2",
  6759. "appliesto": "blockContainerElements",
  6760. "computed": "asSpecified",
  6761. "order": "perGrammar",
  6762. "status": "standard",
  6763. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/orphans"
  6764. },
  6765. "outline": {
  6766. "syntax": "[ <'outline-color'> || <'outline-style'> || <'outline-width'> ]",
  6767. "media": [
  6768. "visual",
  6769. "interactive"
  6770. ],
  6771. "inherited": false,
  6772. "animationType": [
  6773. "outline-color",
  6774. "outline-width",
  6775. "outline-style"
  6776. ],
  6777. "percentages": "no",
  6778. "groups": [
  6779. "CSS Basic User Interface"
  6780. ],
  6781. "initial": [
  6782. "outline-color",
  6783. "outline-style",
  6784. "outline-width"
  6785. ],
  6786. "appliesto": "allElements",
  6787. "computed": [
  6788. "outline-color",
  6789. "outline-width",
  6790. "outline-style"
  6791. ],
  6792. "order": "orderOfAppearance",
  6793. "status": "standard",
  6794. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline"
  6795. },
  6796. "outline-color": {
  6797. "syntax": "<color> | invert",
  6798. "media": [
  6799. "visual",
  6800. "interactive"
  6801. ],
  6802. "inherited": false,
  6803. "animationType": "color",
  6804. "percentages": "no",
  6805. "groups": [
  6806. "CSS Basic User Interface"
  6807. ],
  6808. "initial": "invertOrCurrentColor",
  6809. "appliesto": "allElements",
  6810. "computed": "invertForTranslucentColorRGBAOtherwiseRGB",
  6811. "order": "uniqueOrder",
  6812. "status": "standard",
  6813. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-color"
  6814. },
  6815. "outline-offset": {
  6816. "syntax": "<length>",
  6817. "media": [
  6818. "visual",
  6819. "interactive"
  6820. ],
  6821. "inherited": false,
  6822. "animationType": "length",
  6823. "percentages": "no",
  6824. "groups": [
  6825. "CSS Basic User Interface"
  6826. ],
  6827. "initial": "0",
  6828. "appliesto": "allElements",
  6829. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  6830. "order": "uniqueOrder",
  6831. "status": "standard",
  6832. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-offset"
  6833. },
  6834. "outline-style": {
  6835. "syntax": "auto | <'border-style'>",
  6836. "media": [
  6837. "visual",
  6838. "interactive"
  6839. ],
  6840. "inherited": false,
  6841. "animationType": "discrete",
  6842. "percentages": "no",
  6843. "groups": [
  6844. "CSS Basic User Interface"
  6845. ],
  6846. "initial": "none",
  6847. "appliesto": "allElements",
  6848. "computed": "asSpecified",
  6849. "order": "uniqueOrder",
  6850. "status": "standard",
  6851. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-style"
  6852. },
  6853. "outline-width": {
  6854. "syntax": "<line-width>",
  6855. "media": [
  6856. "visual",
  6857. "interactive"
  6858. ],
  6859. "inherited": false,
  6860. "animationType": "length",
  6861. "percentages": "no",
  6862. "groups": [
  6863. "CSS Basic User Interface"
  6864. ],
  6865. "initial": "medium",
  6866. "appliesto": "allElements",
  6867. "computed": "absoluteLength0ForNone",
  6868. "order": "uniqueOrder",
  6869. "status": "standard",
  6870. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/outline-width"
  6871. },
  6872. "overflow": {
  6873. "syntax": "[ visible | hidden | clip | scroll | auto ]{1,2}",
  6874. "media": "visual",
  6875. "inherited": false,
  6876. "animationType": "discrete",
  6877. "percentages": "no",
  6878. "groups": [
  6879. "CSS Overflow"
  6880. ],
  6881. "initial": "visible",
  6882. "appliesto": "blockContainersFlexContainersGridContainers",
  6883. "computed": [
  6884. "overflow-x",
  6885. "overflow-y"
  6886. ],
  6887. "order": "uniqueOrder",
  6888. "status": "standard",
  6889. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow"
  6890. },
  6891. "overflow-anchor": {
  6892. "syntax": "auto | none",
  6893. "media": "visual",
  6894. "inherited": false,
  6895. "animationType": "discrete",
  6896. "percentages": "no",
  6897. "groups": [
  6898. "CSS Scroll Anchoring"
  6899. ],
  6900. "initial": "auto",
  6901. "appliesto": "allElements",
  6902. "computed": "asSpecified",
  6903. "order": "perGrammar",
  6904. "status": "standard"
  6905. },
  6906. "overflow-block": {
  6907. "syntax": "visible | hidden | clip | scroll | auto",
  6908. "media": "visual",
  6909. "inherited": false,
  6910. "animationType": "discrete",
  6911. "percentages": "no",
  6912. "groups": [
  6913. "CSS Overflow"
  6914. ],
  6915. "initial": "auto",
  6916. "appliesto": "blockContainersFlexContainersGridContainers",
  6917. "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",
  6918. "order": "perGrammar",
  6919. "status": "standard"
  6920. },
  6921. "overflow-clip-box": {
  6922. "syntax": "padding-box | content-box",
  6923. "media": "visual",
  6924. "inherited": false,
  6925. "animationType": "discrete",
  6926. "percentages": "no",
  6927. "groups": [
  6928. "Mozilla Extensions"
  6929. ],
  6930. "initial": "padding-box",
  6931. "appliesto": "allElements",
  6932. "computed": "asSpecified",
  6933. "order": "uniqueOrder",
  6934. "status": "nonstandard",
  6935. "mdn_url": "https://developer.mozilla.org/docs/Mozilla/CSS/overflow-clip-box"
  6936. },
  6937. "overflow-inline": {
  6938. "syntax": "visible | hidden | clip | scroll | auto",
  6939. "media": "visual",
  6940. "inherited": false,
  6941. "animationType": "discrete",
  6942. "percentages": "no",
  6943. "groups": [
  6944. "CSS Overflow"
  6945. ],
  6946. "initial": "auto",
  6947. "appliesto": "blockContainersFlexContainersGridContainers",
  6948. "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",
  6949. "order": "perGrammar",
  6950. "status": "standard"
  6951. },
  6952. "overflow-wrap": {
  6953. "syntax": "normal | break-word | anywhere",
  6954. "media": "visual",
  6955. "inherited": true,
  6956. "animationType": "discrete",
  6957. "percentages": "no",
  6958. "groups": [
  6959. "CSS Text"
  6960. ],
  6961. "initial": "normal",
  6962. "appliesto": "nonReplacedInlineElements",
  6963. "computed": "asSpecified",
  6964. "order": "uniqueOrder",
  6965. "status": "standard",
  6966. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"
  6967. },
  6968. "overflow-x": {
  6969. "syntax": "visible | hidden | clip | scroll | auto",
  6970. "media": "visual",
  6971. "inherited": false,
  6972. "animationType": "discrete",
  6973. "percentages": "no",
  6974. "groups": [
  6975. "CSS Overflow"
  6976. ],
  6977. "initial": "visible",
  6978. "appliesto": "blockContainersFlexContainersGridContainers",
  6979. "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",
  6980. "order": "uniqueOrder",
  6981. "status": "standard",
  6982. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-x"
  6983. },
  6984. "overflow-y": {
  6985. "syntax": "visible | hidden | clip | scroll | auto",
  6986. "media": "visual",
  6987. "inherited": false,
  6988. "animationType": "discrete",
  6989. "percentages": "no",
  6990. "groups": [
  6991. "CSS Overflow"
  6992. ],
  6993. "initial": "visible",
  6994. "appliesto": "blockContainersFlexContainersGridContainers",
  6995. "computed": "asSpecifiedButVisibleOrClipReplacedToAutoOrHiddenIfOtherValueDifferent",
  6996. "order": "uniqueOrder",
  6997. "status": "standard",
  6998. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-y"
  6999. },
  7000. "overscroll-behavior": {
  7001. "syntax": "[ contain | none | auto ]{1,2}",
  7002. "media": "visual",
  7003. "inherited": false,
  7004. "animationType": "discrete",
  7005. "percentages": "no",
  7006. "groups": [
  7007. "CSS Box Model"
  7008. ],
  7009. "initial": "auto",
  7010. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  7011. "computed": "asSpecified",
  7012. "order": "uniqueOrder",
  7013. "status": "standard",
  7014. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior"
  7015. },
  7016. "overscroll-behavior-block": {
  7017. "syntax": "contain | none | auto",
  7018. "media": "visual",
  7019. "inherited": false,
  7020. "animationType": "discrete",
  7021. "percentages": "no",
  7022. "groups": [
  7023. "CSS Box Model"
  7024. ],
  7025. "initial": "auto",
  7026. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  7027. "computed": "asSpecified",
  7028. "order": "uniqueOrder",
  7029. "status": "standard",
  7030. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-block"
  7031. },
  7032. "overscroll-behavior-inline": {
  7033. "syntax": "contain | none | auto",
  7034. "media": "visual",
  7035. "inherited": false,
  7036. "animationType": "discrete",
  7037. "percentages": "no",
  7038. "groups": [
  7039. "CSS Box Model"
  7040. ],
  7041. "initial": "auto",
  7042. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  7043. "computed": "asSpecified",
  7044. "order": "uniqueOrder",
  7045. "status": "standard",
  7046. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-inline"
  7047. },
  7048. "overscroll-behavior-x": {
  7049. "syntax": "contain | none | auto",
  7050. "media": "visual",
  7051. "inherited": false,
  7052. "animationType": "discrete",
  7053. "percentages": "no",
  7054. "groups": [
  7055. "CSS Box Model"
  7056. ],
  7057. "initial": "auto",
  7058. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  7059. "computed": "asSpecified",
  7060. "order": "uniqueOrder",
  7061. "status": "standard",
  7062. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-x"
  7063. },
  7064. "overscroll-behavior-y": {
  7065. "syntax": "contain | none | auto",
  7066. "media": "visual",
  7067. "inherited": false,
  7068. "animationType": "discrete",
  7069. "percentages": "no",
  7070. "groups": [
  7071. "CSS Box Model"
  7072. ],
  7073. "initial": "auto",
  7074. "appliesto": "nonReplacedBlockAndInlineBlockElements",
  7075. "computed": "asSpecified",
  7076. "order": "uniqueOrder",
  7077. "status": "standard",
  7078. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overscroll-behavior-y"
  7079. },
  7080. "padding": {
  7081. "syntax": "[ <length> | <percentage> ]{1,4}",
  7082. "media": "visual",
  7083. "inherited": false,
  7084. "animationType": "length",
  7085. "percentages": "referToWidthOfContainingBlock",
  7086. "groups": [
  7087. "CSS Box Model"
  7088. ],
  7089. "initial": [
  7090. "padding-bottom",
  7091. "padding-left",
  7092. "padding-right",
  7093. "padding-top"
  7094. ],
  7095. "appliesto": "allElementsExceptInternalTableDisplayTypes",
  7096. "computed": [
  7097. "padding-bottom",
  7098. "padding-left",
  7099. "padding-right",
  7100. "padding-top"
  7101. ],
  7102. "order": "uniqueOrder",
  7103. "alsoAppliesTo": [
  7104. "::first-letter",
  7105. "::first-line"
  7106. ],
  7107. "status": "standard",
  7108. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding"
  7109. },
  7110. "padding-block": {
  7111. "syntax": "<'padding-left'>{1,2}",
  7112. "media": "visual",
  7113. "inherited": false,
  7114. "animationType": "discrete",
  7115. "percentages": "logicalWidthOfContainingBlock",
  7116. "groups": [
  7117. "CSS Logical Properties"
  7118. ],
  7119. "initial": "0",
  7120. "appliesto": "allElements",
  7121. "computed": "asLength",
  7122. "order": "uniqueOrder",
  7123. "status": "standard",
  7124. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block"
  7125. },
  7126. "padding-block-end": {
  7127. "syntax": "<'padding-left'>",
  7128. "media": "visual",
  7129. "inherited": false,
  7130. "animationType": "length",
  7131. "percentages": "logicalWidthOfContainingBlock",
  7132. "groups": [
  7133. "CSS Logical Properties"
  7134. ],
  7135. "initial": "0",
  7136. "appliesto": "allElements",
  7137. "computed": "asLength",
  7138. "order": "uniqueOrder",
  7139. "status": "standard",
  7140. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block-end"
  7141. },
  7142. "padding-block-start": {
  7143. "syntax": "<'padding-left'>",
  7144. "media": "visual",
  7145. "inherited": false,
  7146. "animationType": "length",
  7147. "percentages": "logicalWidthOfContainingBlock",
  7148. "groups": [
  7149. "CSS Logical Properties"
  7150. ],
  7151. "initial": "0",
  7152. "appliesto": "allElements",
  7153. "computed": "asLength",
  7154. "order": "uniqueOrder",
  7155. "status": "standard",
  7156. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-block-start"
  7157. },
  7158. "padding-bottom": {
  7159. "syntax": "<length> | <percentage>",
  7160. "media": "visual",
  7161. "inherited": false,
  7162. "animationType": "length",
  7163. "percentages": "referToWidthOfContainingBlock",
  7164. "groups": [
  7165. "CSS Box Model"
  7166. ],
  7167. "initial": "0",
  7168. "appliesto": "allElementsExceptInternalTableDisplayTypes",
  7169. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  7170. "order": "uniqueOrder",
  7171. "alsoAppliesTo": [
  7172. "::first-letter",
  7173. "::first-line"
  7174. ],
  7175. "status": "standard",
  7176. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-bottom"
  7177. },
  7178. "padding-inline": {
  7179. "syntax": "<'padding-left'>{1,2}",
  7180. "media": "visual",
  7181. "inherited": false,
  7182. "animationType": "discrete",
  7183. "percentages": "logicalWidthOfContainingBlock",
  7184. "groups": [
  7185. "CSS Logical Properties"
  7186. ],
  7187. "initial": "0",
  7188. "appliesto": "allElements",
  7189. "computed": "asLength",
  7190. "order": "uniqueOrder",
  7191. "status": "standard",
  7192. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline"
  7193. },
  7194. "padding-inline-end": {
  7195. "syntax": "<'padding-left'>",
  7196. "media": "visual",
  7197. "inherited": false,
  7198. "animationType": "length",
  7199. "percentages": "logicalWidthOfContainingBlock",
  7200. "groups": [
  7201. "CSS Logical Properties"
  7202. ],
  7203. "initial": "0",
  7204. "appliesto": "allElements",
  7205. "computed": "asLength",
  7206. "order": "uniqueOrder",
  7207. "status": "standard",
  7208. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline-end"
  7209. },
  7210. "padding-inline-start": {
  7211. "syntax": "<'padding-left'>",
  7212. "media": "visual",
  7213. "inherited": false,
  7214. "animationType": "length",
  7215. "percentages": "logicalWidthOfContainingBlock",
  7216. "groups": [
  7217. "CSS Logical Properties"
  7218. ],
  7219. "initial": "0",
  7220. "appliesto": "allElements",
  7221. "computed": "asLength",
  7222. "order": "uniqueOrder",
  7223. "status": "standard",
  7224. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-inline-start"
  7225. },
  7226. "padding-left": {
  7227. "syntax": "<length> | <percentage>",
  7228. "media": "visual",
  7229. "inherited": false,
  7230. "animationType": "length",
  7231. "percentages": "referToWidthOfContainingBlock",
  7232. "groups": [
  7233. "CSS Box Model"
  7234. ],
  7235. "initial": "0",
  7236. "appliesto": "allElementsExceptInternalTableDisplayTypes",
  7237. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  7238. "order": "uniqueOrder",
  7239. "alsoAppliesTo": [
  7240. "::first-letter",
  7241. "::first-line"
  7242. ],
  7243. "status": "standard",
  7244. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-left"
  7245. },
  7246. "padding-right": {
  7247. "syntax": "<length> | <percentage>",
  7248. "media": "visual",
  7249. "inherited": false,
  7250. "animationType": "length",
  7251. "percentages": "referToWidthOfContainingBlock",
  7252. "groups": [
  7253. "CSS Box Model"
  7254. ],
  7255. "initial": "0",
  7256. "appliesto": "allElementsExceptInternalTableDisplayTypes",
  7257. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  7258. "order": "uniqueOrder",
  7259. "alsoAppliesTo": [
  7260. "::first-letter",
  7261. "::first-line"
  7262. ],
  7263. "status": "standard",
  7264. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-right"
  7265. },
  7266. "padding-top": {
  7267. "syntax": "<length> | <percentage>",
  7268. "media": "visual",
  7269. "inherited": false,
  7270. "animationType": "length",
  7271. "percentages": "referToWidthOfContainingBlock",
  7272. "groups": [
  7273. "CSS Box Model"
  7274. ],
  7275. "initial": "0",
  7276. "appliesto": "allElementsExceptInternalTableDisplayTypes",
  7277. "computed": "percentageAsSpecifiedOrAbsoluteLength",
  7278. "order": "uniqueOrder",
  7279. "alsoAppliesTo": [
  7280. "::first-letter",
  7281. "::first-line"
  7282. ],
  7283. "status": "standard",
  7284. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/padding-top"
  7285. },
  7286. "page-break-after": {
  7287. "syntax": "auto | always | avoid | left | right | recto | verso",
  7288. "media": [
  7289. "visual",
  7290. "paged"
  7291. ],
  7292. "inherited": false,
  7293. "animationType": "discrete",
  7294. "percentages": "no",
  7295. "groups": [
  7296. "CSS Pages"
  7297. ],
  7298. "initial": "auto",
  7299. "appliesto": "blockElementsInNormalFlow",
  7300. "computed": "asSpecified",
  7301. "order": "uniqueOrder",
  7302. "status": "standard",
  7303. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page-break-after"
  7304. },
  7305. "page-break-before": {
  7306. "syntax": "auto | always | avoid | left | right | recto | verso",
  7307. "media": [
  7308. "visual",
  7309. "paged"
  7310. ],
  7311. "inherited": false,
  7312. "animationType": "discrete",
  7313. "percentages": "no",
  7314. "groups": [
  7315. "CSS Pages"
  7316. ],
  7317. "initial": "auto",
  7318. "appliesto": "blockElementsInNormalFlow",
  7319. "computed": "asSpecified",
  7320. "order": "uniqueOrder",
  7321. "status": "standard",
  7322. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page-break-before"
  7323. },
  7324. "page-break-inside": {
  7325. "syntax": "auto | avoid",
  7326. "media": [
  7327. "visual",
  7328. "paged"
  7329. ],
  7330. "inherited": false,
  7331. "animationType": "discrete",
  7332. "percentages": "no",
  7333. "groups": [
  7334. "CSS Pages"
  7335. ],
  7336. "initial": "auto",
  7337. "appliesto": "blockElementsInNormalFlow",
  7338. "computed": "asSpecified",
  7339. "order": "uniqueOrder",
  7340. "status": "standard",
  7341. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/page-break-inside"
  7342. },
  7343. "paint-order": {
  7344. "syntax": "normal | [ fill || stroke || markers ]",
  7345. "media": "visual",
  7346. "inherited": true,
  7347. "animationType": "discrete",
  7348. "percentages": "no",
  7349. "groups": [
  7350. "CSS Text"
  7351. ],
  7352. "initial": "normal",
  7353. "appliesto": "textElements",
  7354. "computed": "asSpecified",
  7355. "order": "uniqueOrder",
  7356. "status": "standard",
  7357. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/paint-order"
  7358. },
  7359. "perspective": {
  7360. "syntax": "none | <length>",
  7361. "media": "visual",
  7362. "inherited": false,
  7363. "animationType": "length",
  7364. "percentages": "no",
  7365. "groups": [
  7366. "CSS Transforms"
  7367. ],
  7368. "initial": "none",
  7369. "appliesto": "transformableElements",
  7370. "computed": "absoluteLengthOrNone",
  7371. "order": "uniqueOrder",
  7372. "stacking": true,
  7373. "status": "standard",
  7374. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/perspective"
  7375. },
  7376. "perspective-origin": {
  7377. "syntax": "<position>",
  7378. "media": "visual",
  7379. "inherited": false,
  7380. "animationType": "simpleListOfLpc",
  7381. "percentages": "referToSizeOfBoundingBox",
  7382. "groups": [
  7383. "CSS Transforms"
  7384. ],
  7385. "initial": "50% 50%",
  7386. "appliesto": "transformableElements",
  7387. "computed": "forLengthAbsoluteValueOtherwisePercentage",
  7388. "order": "oneOrTwoValuesLengthAbsoluteKeywordsPercentages",
  7389. "status": "standard",
  7390. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/perspective-origin"
  7391. },
  7392. "place-content": {
  7393. "syntax": "<'align-content'> <'justify-content'>?",
  7394. "media": "visual",
  7395. "inherited": false,
  7396. "animationType": "discrete",
  7397. "percentages": "no",
  7398. "groups": [
  7399. "CSS Box Alignment"
  7400. ],
  7401. "initial": "normal",
  7402. "appliesto": "multilineFlexContainers",
  7403. "computed": "asSpecified",
  7404. "order": "uniqueOrder",
  7405. "status": "standard",
  7406. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-content"
  7407. },
  7408. "place-items": {
  7409. "syntax": "<'align-items'> <'justify-items'>?",
  7410. "media": "visual",
  7411. "inherited": false,
  7412. "animationType": "discrete",
  7413. "percentages": "no",
  7414. "groups": [
  7415. "CSS Box Alignment"
  7416. ],
  7417. "initial": [
  7418. "align-items",
  7419. "justify-items"
  7420. ],
  7421. "appliesto": "allElements",
  7422. "computed": [
  7423. "align-items",
  7424. "justify-items"
  7425. ],
  7426. "order": "uniqueOrder",
  7427. "status": "standard",
  7428. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-items"
  7429. },
  7430. "place-self": {
  7431. "syntax": "<'align-self'> <'justify-self'>?",
  7432. "media": "visual",
  7433. "inherited": false,
  7434. "animationType": "discrete",
  7435. "percentages": "no",
  7436. "groups": [
  7437. "CSS Box Alignment"
  7438. ],
  7439. "initial": [
  7440. "align-self",
  7441. "justify-self"
  7442. ],
  7443. "appliesto": "blockLevelBoxesAndAbsolutelyPositionedBoxesAndGridItems",
  7444. "computed": [
  7445. "align-self",
  7446. "justify-self"
  7447. ],
  7448. "order": "uniqueOrder",
  7449. "status": "standard",
  7450. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/place-self"
  7451. },
  7452. "pointer-events": {
  7453. "syntax": "auto | none | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | inherit",
  7454. "media": "visual",
  7455. "inherited": true,
  7456. "animationType": "discrete",
  7457. "percentages": "no",
  7458. "groups": [
  7459. "Pointer Events"
  7460. ],
  7461. "initial": "auto",
  7462. "appliesto": "allElements",
  7463. "computed": "asSpecified",
  7464. "order": "uniqueOrder",
  7465. "status": "standard",
  7466. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/pointer-events"
  7467. },
  7468. "position": {
  7469. "syntax": "static | relative | absolute | sticky | fixed",
  7470. "media": "visual",
  7471. "inherited": false,
  7472. "animationType": "discrete",
  7473. "percentages": "no",
  7474. "groups": [
  7475. "CSS Positioning"
  7476. ],
  7477. "initial": "static",
  7478. "appliesto": "allElements",
  7479. "computed": "asSpecified",
  7480. "order": "uniqueOrder",
  7481. "stacking": true,
  7482. "status": "standard",
  7483. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/position"
  7484. },
  7485. "quotes": {
  7486. "syntax": "none | auto | [ <string> <string> ]+",
  7487. "media": "visual",
  7488. "inherited": true,
  7489. "animationType": "discrete",
  7490. "percentages": "no",
  7491. "groups": [
  7492. "CSS Generated Content"
  7493. ],
  7494. "initial": "dependsOnUserAgent",
  7495. "appliesto": "allElements",
  7496. "computed": "asSpecified",
  7497. "order": "uniqueOrder",
  7498. "status": "standard",
  7499. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/quotes"
  7500. },
  7501. "resize": {
  7502. "syntax": "none | both | horizontal | vertical | block | inline",
  7503. "media": "visual",
  7504. "inherited": false,
  7505. "animationType": "discrete",
  7506. "percentages": "no",
  7507. "groups": [
  7508. "CSS Basic User Interface"
  7509. ],
  7510. "initial": "none",
  7511. "appliesto": "elementsWithOverflowNotVisibleAndReplacedElements",
  7512. "computed": "asSpecified",
  7513. "order": "uniqueOrder",
  7514. "status": "standard",
  7515. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/resize"
  7516. },
  7517. "right": {
  7518. "syntax": "<length> | <percentage> | auto",
  7519. "media": "visual",
  7520. "inherited": false,
  7521. "animationType": "lpc",
  7522. "percentages": "referToWidthOfContainingBlock",
  7523. "groups": [
  7524. "CSS Positioning"
  7525. ],
  7526. "initial": "auto",
  7527. "appliesto": "positionedElements",
  7528. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  7529. "order": "uniqueOrder",
  7530. "status": "standard",
  7531. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/right"
  7532. },
  7533. "rotate": {
  7534. "syntax": "none | <angle> | [ x | y | z | <number>{3} ] && <angle>",
  7535. "media": "visual",
  7536. "inherited": false,
  7537. "animationType": "transform",
  7538. "percentages": "no",
  7539. "groups": [
  7540. "CSS Transforms"
  7541. ],
  7542. "initial": "none",
  7543. "appliesto": "transformableElements",
  7544. "computed": "asSpecified",
  7545. "order": "perGrammar",
  7546. "stacking": true,
  7547. "status": "standard",
  7548. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/rotate"
  7549. },
  7550. "row-gap": {
  7551. "syntax": "normal | <length-percentage>",
  7552. "media": "visual",
  7553. "inherited": false,
  7554. "animationType": "lpc",
  7555. "percentages": "referToDimensionOfContentArea",
  7556. "groups": [
  7557. "CSS Box Alignment"
  7558. ],
  7559. "initial": "normal",
  7560. "appliesto": "multiColumnElementsFlexContainersGridContainers",
  7561. "computed": "asSpecifiedWithLengthsAbsoluteAndNormalComputingToZeroExceptMultiColumn",
  7562. "order": "perGrammar",
  7563. "status": "standard",
  7564. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/row-gap"
  7565. },
  7566. "ruby-align": {
  7567. "syntax": "start | center | space-between | space-around",
  7568. "media": "visual",
  7569. "inherited": true,
  7570. "animationType": "discrete",
  7571. "percentages": "no",
  7572. "groups": [
  7573. "CSS Ruby"
  7574. ],
  7575. "initial": "space-around",
  7576. "appliesto": "rubyBasesAnnotationsBaseAnnotationContainers",
  7577. "computed": "asSpecified",
  7578. "order": "uniqueOrder",
  7579. "status": "experimental",
  7580. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ruby-align"
  7581. },
  7582. "ruby-merge": {
  7583. "syntax": "separate | collapse | auto",
  7584. "media": "visual",
  7585. "inherited": true,
  7586. "animationType": "discrete",
  7587. "percentages": "no",
  7588. "groups": [
  7589. "CSS Ruby"
  7590. ],
  7591. "initial": "separate",
  7592. "appliesto": "rubyAnnotationsContainers",
  7593. "computed": "asSpecified",
  7594. "order": "uniqueOrder",
  7595. "status": "experimental"
  7596. },
  7597. "ruby-position": {
  7598. "syntax": "over | under | inter-character",
  7599. "media": "visual",
  7600. "inherited": true,
  7601. "animationType": "discrete",
  7602. "percentages": "no",
  7603. "groups": [
  7604. "CSS Ruby"
  7605. ],
  7606. "initial": "over",
  7607. "appliesto": "rubyAnnotationsContainers",
  7608. "computed": "asSpecified",
  7609. "order": "uniqueOrder",
  7610. "status": "experimental",
  7611. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/ruby-position"
  7612. },
  7613. "scale": {
  7614. "syntax": "none | <number>{1,3}",
  7615. "media": "visual",
  7616. "inherited": false,
  7617. "animationType": "transform",
  7618. "percentages": "no",
  7619. "groups": [
  7620. "CSS Transforms"
  7621. ],
  7622. "initial": "none",
  7623. "appliesto": "transformableElements",
  7624. "computed": "asSpecified",
  7625. "order": "perGrammar",
  7626. "stacking": true,
  7627. "status": "standard",
  7628. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scale"
  7629. },
  7630. "scrollbar-color": {
  7631. "syntax": "auto | dark | light | <color>{2}",
  7632. "media": "visual",
  7633. "inherited": true,
  7634. "animationType": "color",
  7635. "percentages": "no",
  7636. "groups": [
  7637. "CSS Scrollbars"
  7638. ],
  7639. "initial": "auto",
  7640. "appliesto": "scrollingBoxes",
  7641. "computed": "asSpecified",
  7642. "order": "perGrammar",
  7643. "status": "standard",
  7644. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scrollbar-color"
  7645. },
  7646. "scrollbar-gutter": {
  7647. "syntax": "auto | [ stable | always ] && both? && force?",
  7648. "media": "visual",
  7649. "inherited": false,
  7650. "animationType": "discrete",
  7651. "percentages": "no",
  7652. "groups": [
  7653. "CSS Overflow"
  7654. ],
  7655. "initial": "auto",
  7656. "appliesto": "allElements",
  7657. "computed": "asSpecified",
  7658. "order": "perGrammar",
  7659. "status": "standard",
  7660. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scrollbar-gutter"
  7661. },
  7662. "scrollbar-width": {
  7663. "syntax": "auto | thin | none",
  7664. "media": "visual",
  7665. "inherited": false,
  7666. "animationType": "discrete",
  7667. "percentages": "no",
  7668. "groups": [
  7669. "CSS Scrollbars"
  7670. ],
  7671. "initial": "auto",
  7672. "appliesto": "scrollingBoxes",
  7673. "computed": "asSpecified",
  7674. "order": "perGrammar",
  7675. "status": "standard",
  7676. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scrollbar-width"
  7677. },
  7678. "scroll-behavior": {
  7679. "syntax": "auto | smooth",
  7680. "media": "visual",
  7681. "inherited": false,
  7682. "animationType": "discrete",
  7683. "percentages": "no",
  7684. "groups": [
  7685. "CSSOM View"
  7686. ],
  7687. "initial": "auto",
  7688. "appliesto": "scrollingBoxes",
  7689. "computed": "asSpecified",
  7690. "order": "uniqueOrder",
  7691. "status": "standard",
  7692. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-behavior"
  7693. },
  7694. "scroll-margin": {
  7695. "syntax": "<length>{1,4}",
  7696. "media": "visual",
  7697. "inherited": false,
  7698. "animationType": "byComputedValueType",
  7699. "percentages": "no",
  7700. "groups": [
  7701. "CSS Scroll Snap"
  7702. ],
  7703. "initial": "0",
  7704. "appliesto": "allElements",
  7705. "computed": "asSpecified",
  7706. "order": "perGrammar",
  7707. "status": "standard",
  7708. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin"
  7709. },
  7710. "scroll-margin-block": {
  7711. "syntax": "<length>{1,2}",
  7712. "media": "visual",
  7713. "inherited": false,
  7714. "animationType": "byComputedValueType",
  7715. "percentages": "no",
  7716. "groups": [
  7717. "CSS Scroll Snap"
  7718. ],
  7719. "initial": "0",
  7720. "appliesto": "allElements",
  7721. "computed": "asSpecified",
  7722. "order": "perGrammar",
  7723. "status": "standard",
  7724. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block"
  7725. },
  7726. "scroll-margin-block-start": {
  7727. "syntax": "<length>",
  7728. "media": "visual",
  7729. "inherited": false,
  7730. "animationType": "byComputedValueType",
  7731. "percentages": "no",
  7732. "groups": [
  7733. "CSS Scroll Snap"
  7734. ],
  7735. "initial": "0",
  7736. "appliesto": "allElements",
  7737. "computed": "asSpecified",
  7738. "order": "perGrammar",
  7739. "status": "standard",
  7740. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start"
  7741. },
  7742. "scroll-margin-block-end": {
  7743. "syntax": "<length>",
  7744. "media": "visual",
  7745. "inherited": false,
  7746. "animationType": "byComputedValueType",
  7747. "percentages": "no",
  7748. "groups": [
  7749. "CSS Scroll Snap"
  7750. ],
  7751. "initial": "0",
  7752. "appliesto": "allElements",
  7753. "computed": "asSpecified",
  7754. "order": "perGrammar",
  7755. "status": "standard",
  7756. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end"
  7757. },
  7758. "scroll-margin-bottom": {
  7759. "syntax": "<length>",
  7760. "media": "visual",
  7761. "inherited": false,
  7762. "animationType": "byComputedValueType",
  7763. "percentages": "no",
  7764. "groups": [
  7765. "CSS Scroll Snap"
  7766. ],
  7767. "initial": "0",
  7768. "appliesto": "allElements",
  7769. "computed": "asSpecified",
  7770. "order": "perGrammar",
  7771. "status": "standard",
  7772. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom"
  7773. },
  7774. "scroll-margin-inline": {
  7775. "syntax": "<length>{1,2}",
  7776. "media": "visual",
  7777. "inherited": false,
  7778. "animationType": "byComputedValueType",
  7779. "percentages": "no",
  7780. "groups": [
  7781. "CSS Scroll Snap"
  7782. ],
  7783. "initial": "0",
  7784. "appliesto": "allElements",
  7785. "computed": "asSpecified",
  7786. "order": "perGrammar",
  7787. "status": "standard",
  7788. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline"
  7789. },
  7790. "scroll-margin-inline-start": {
  7791. "syntax": "<length>",
  7792. "media": "visual",
  7793. "inherited": false,
  7794. "animationType": "byComputedValueType",
  7795. "percentages": "no",
  7796. "groups": [
  7797. "CSS Scroll Snap"
  7798. ],
  7799. "initial": "0",
  7800. "appliesto": "allElements",
  7801. "computed": "asSpecified",
  7802. "order": "perGrammar",
  7803. "status": "standard",
  7804. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start"
  7805. },
  7806. "scroll-margin-inline-end": {
  7807. "syntax": "<length>",
  7808. "media": "visual",
  7809. "inherited": false,
  7810. "animationType": "byComputedValueType",
  7811. "percentages": "no",
  7812. "groups": [
  7813. "CSS Scroll Snap"
  7814. ],
  7815. "initial": "0",
  7816. "appliesto": "allElements",
  7817. "computed": "asSpecified",
  7818. "order": "perGrammar",
  7819. "status": "standard",
  7820. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end"
  7821. },
  7822. "scroll-margin-left": {
  7823. "syntax": "<length>",
  7824. "media": "visual",
  7825. "inherited": false,
  7826. "animationType": "byComputedValueType",
  7827. "percentages": "no",
  7828. "groups": [
  7829. "CSS Scroll Snap"
  7830. ],
  7831. "initial": "0",
  7832. "appliesto": "allElements",
  7833. "computed": "asSpecified",
  7834. "order": "perGrammar",
  7835. "status": "standard",
  7836. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left"
  7837. },
  7838. "scroll-margin-right": {
  7839. "syntax": "<length>",
  7840. "media": "visual",
  7841. "inherited": false,
  7842. "animationType": "byComputedValueType",
  7843. "percentages": "no",
  7844. "groups": [
  7845. "CSS Scroll Snap"
  7846. ],
  7847. "initial": "0",
  7848. "appliesto": "allElements",
  7849. "computed": "asSpecified",
  7850. "order": "perGrammar",
  7851. "status": "standard",
  7852. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right"
  7853. },
  7854. "scroll-margin-top": {
  7855. "syntax": "<length>",
  7856. "media": "visual",
  7857. "inherited": false,
  7858. "animationType": "byComputedValueType",
  7859. "percentages": "no",
  7860. "groups": [
  7861. "CSS Scroll Snap"
  7862. ],
  7863. "initial": "0",
  7864. "appliesto": "allElements",
  7865. "computed": "asSpecified",
  7866. "order": "perGrammar",
  7867. "status": "standard",
  7868. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top"
  7869. },
  7870. "scroll-padding": {
  7871. "syntax": "[ auto | <length-percentage> ]{1,4}",
  7872. "media": "visual",
  7873. "inherited": false,
  7874. "animationType": "byComputedValueType",
  7875. "percentages": "relativeToTheScrollContainersScrollport",
  7876. "groups": [
  7877. "CSS Scroll Snap"
  7878. ],
  7879. "initial": "auto",
  7880. "appliesto": "scrollContainers",
  7881. "computed": "asSpecified",
  7882. "order": "perGrammar",
  7883. "status": "standard",
  7884. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding"
  7885. },
  7886. "scroll-padding-block": {
  7887. "syntax": "[ auto | <length-percentage> ]{1,2}",
  7888. "media": "visual",
  7889. "inherited": false,
  7890. "animationType": "byComputedValueType",
  7891. "percentages": "relativeToTheScrollContainersScrollport",
  7892. "groups": [
  7893. "CSS Scroll Snap"
  7894. ],
  7895. "initial": "auto",
  7896. "appliesto": "scrollContainers",
  7897. "computed": "asSpecified",
  7898. "order": "perGrammar",
  7899. "status": "standard",
  7900. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block"
  7901. },
  7902. "scroll-padding-block-start": {
  7903. "syntax": "auto | <length-percentage>",
  7904. "media": "visual",
  7905. "inherited": false,
  7906. "animationType": "byComputedValueType",
  7907. "percentages": "relativeToTheScrollContainersScrollport",
  7908. "groups": [
  7909. "CSS Scroll Snap"
  7910. ],
  7911. "initial": "auto",
  7912. "appliesto": "scrollContainers",
  7913. "computed": "asSpecified",
  7914. "order": "perGrammar",
  7915. "status": "standard",
  7916. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start"
  7917. },
  7918. "scroll-padding-block-end": {
  7919. "syntax": "auto | <length-percentage>",
  7920. "media": "visual",
  7921. "inherited": false,
  7922. "animationType": "byComputedValueType",
  7923. "percentages": "relativeToTheScrollContainersScrollport",
  7924. "groups": [
  7925. "CSS Scroll Snap"
  7926. ],
  7927. "initial": "auto",
  7928. "appliesto": "scrollContainers",
  7929. "computed": "asSpecified",
  7930. "order": "perGrammar",
  7931. "status": "standard",
  7932. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end"
  7933. },
  7934. "scroll-padding-bottom": {
  7935. "syntax": "auto | <length-percentage>",
  7936. "media": "visual",
  7937. "inherited": false,
  7938. "animationType": "byComputedValueType",
  7939. "percentages": "relativeToTheScrollContainersScrollport",
  7940. "groups": [
  7941. "CSS Scroll Snap"
  7942. ],
  7943. "initial": "auto",
  7944. "appliesto": "scrollContainers",
  7945. "computed": "asSpecified",
  7946. "order": "perGrammar",
  7947. "status": "standard",
  7948. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-bottom"
  7949. },
  7950. "scroll-padding-inline": {
  7951. "syntax": "[ auto | <length-percentage> ]{1,2}",
  7952. "media": "visual",
  7953. "inherited": false,
  7954. "animationType": "byComputedValueType",
  7955. "percentages": "relativeToTheScrollContainersScrollport",
  7956. "groups": [
  7957. "CSS Scroll Snap"
  7958. ],
  7959. "initial": "auto",
  7960. "appliesto": "scrollContainers",
  7961. "computed": "asSpecified",
  7962. "order": "perGrammar",
  7963. "status": "standard",
  7964. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline"
  7965. },
  7966. "scroll-padding-inline-start": {
  7967. "syntax": "auto | <length-percentage>",
  7968. "media": "visual",
  7969. "inherited": false,
  7970. "animationType": "byComputedValueType",
  7971. "percentages": "relativeToTheScrollContainersScrollport",
  7972. "groups": [
  7973. "CSS Scroll Snap"
  7974. ],
  7975. "initial": "auto",
  7976. "appliesto": "scrollContainers",
  7977. "computed": "asSpecified",
  7978. "order": "perGrammar",
  7979. "status": "standard",
  7980. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start"
  7981. },
  7982. "scroll-padding-inline-end": {
  7983. "syntax": "auto | <length-percentage>",
  7984. "media": "visual",
  7985. "inherited": false,
  7986. "animationType": "byComputedValueType",
  7987. "percentages": "relativeToTheScrollContainersScrollport",
  7988. "groups": [
  7989. "CSS Scroll Snap"
  7990. ],
  7991. "initial": "auto",
  7992. "appliesto": "scrollContainers",
  7993. "computed": "asSpecified",
  7994. "order": "perGrammar",
  7995. "status": "standard",
  7996. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end"
  7997. },
  7998. "scroll-padding-left": {
  7999. "syntax": "auto | <length-percentage>",
  8000. "media": "visual",
  8001. "inherited": false,
  8002. "animationType": "byComputedValueType",
  8003. "percentages": "relativeToTheScrollContainersScrollport",
  8004. "groups": [
  8005. "CSS Scroll Snap"
  8006. ],
  8007. "initial": "auto",
  8008. "appliesto": "scrollContainers",
  8009. "computed": "asSpecified",
  8010. "order": "perGrammar",
  8011. "status": "standard",
  8012. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-left"
  8013. },
  8014. "scroll-padding-right": {
  8015. "syntax": "auto | <length-percentage>",
  8016. "media": "visual",
  8017. "inherited": false,
  8018. "animationType": "byComputedValueType",
  8019. "percentages": "relativeToTheScrollContainersScrollport",
  8020. "groups": [
  8021. "CSS Scroll Snap"
  8022. ],
  8023. "initial": "auto",
  8024. "appliesto": "scrollContainers",
  8025. "computed": "asSpecified",
  8026. "order": "perGrammar",
  8027. "status": "standard",
  8028. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-right"
  8029. },
  8030. "scroll-padding-top": {
  8031. "syntax": "auto | <length-percentage>",
  8032. "media": "visual",
  8033. "inherited": false,
  8034. "animationType": "byComputedValueType",
  8035. "percentages": "relativeToTheScrollContainersScrollport",
  8036. "groups": [
  8037. "CSS Scroll Snap"
  8038. ],
  8039. "initial": "auto",
  8040. "appliesto": "scrollContainers",
  8041. "computed": "asSpecified",
  8042. "order": "perGrammar",
  8043. "status": "standard",
  8044. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-padding-top"
  8045. },
  8046. "scroll-snap-align": {
  8047. "syntax": "[ none | start | end | center ]{1,2}",
  8048. "media": "visual",
  8049. "inherited": false,
  8050. "animationType": "discrete",
  8051. "percentages": "no",
  8052. "groups": [
  8053. "CSS Scroll Snap"
  8054. ],
  8055. "initial": "none",
  8056. "appliesto": "allElements",
  8057. "computed": "asSpecified",
  8058. "order": "perGrammar",
  8059. "status": "standard",
  8060. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-align"
  8061. },
  8062. "scroll-snap-coordinate": {
  8063. "syntax": "none | <position>#",
  8064. "media": "interactive",
  8065. "inherited": false,
  8066. "animationType": "position",
  8067. "percentages": "referToBorderBox",
  8068. "groups": [
  8069. "CSS Scroll Snap"
  8070. ],
  8071. "initial": "none",
  8072. "appliesto": "allElements",
  8073. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8074. "order": "uniqueOrder",
  8075. "status": "obsolete",
  8076. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-coordinate"
  8077. },
  8078. "scroll-snap-destination": {
  8079. "syntax": "<position>",
  8080. "media": "interactive",
  8081. "inherited": false,
  8082. "animationType": "position",
  8083. "percentages": "relativeToScrollContainerPaddingBoxAxis",
  8084. "groups": [
  8085. "CSS Scroll Snap"
  8086. ],
  8087. "initial": "0px 0px",
  8088. "appliesto": "scrollContainers",
  8089. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8090. "order": "uniqueOrder",
  8091. "status": "obsolete",
  8092. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-destination"
  8093. },
  8094. "scroll-snap-points-x": {
  8095. "syntax": "none | repeat( <length-percentage> )",
  8096. "media": "interactive",
  8097. "inherited": false,
  8098. "animationType": "discrete",
  8099. "percentages": "relativeToScrollContainerPaddingBoxAxis",
  8100. "groups": [
  8101. "CSS Scroll Snap"
  8102. ],
  8103. "initial": "none",
  8104. "appliesto": "scrollContainers",
  8105. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8106. "order": "uniqueOrder",
  8107. "status": "obsolete",
  8108. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-x"
  8109. },
  8110. "scroll-snap-points-y": {
  8111. "syntax": "none | repeat( <length-percentage> )",
  8112. "media": "interactive",
  8113. "inherited": false,
  8114. "animationType": "discrete",
  8115. "percentages": "relativeToScrollContainerPaddingBoxAxis",
  8116. "groups": [
  8117. "CSS Scroll Snap"
  8118. ],
  8119. "initial": "none",
  8120. "appliesto": "scrollContainers",
  8121. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8122. "order": "uniqueOrder",
  8123. "status": "obsolete",
  8124. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-points-y"
  8125. },
  8126. "scroll-snap-stop": {
  8127. "syntax": "normal | always",
  8128. "media": "visual",
  8129. "inherited": false,
  8130. "animationType": "discrete",
  8131. "percentages": "no",
  8132. "groups": [
  8133. "CSS Scroll Snap"
  8134. ],
  8135. "initial": "normal",
  8136. "appliesto": "allElements",
  8137. "computed": "asSpecified",
  8138. "order": "perGrammar",
  8139. "status": "standard",
  8140. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop"
  8141. },
  8142. "scroll-snap-type": {
  8143. "syntax": "none | [ x | y | block | inline | both ] [ mandatory | proximity ]?",
  8144. "media": "interactive",
  8145. "inherited": false,
  8146. "animationType": "discrete",
  8147. "percentages": "no",
  8148. "groups": [
  8149. "CSS Scroll Snap"
  8150. ],
  8151. "initial": "none",
  8152. "appliesto": "allElements",
  8153. "computed": "asSpecified",
  8154. "order": "uniqueOrder",
  8155. "status": "standard",
  8156. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type"
  8157. },
  8158. "scroll-snap-type-x": {
  8159. "syntax": "none | mandatory | proximity",
  8160. "media": "interactive",
  8161. "inherited": false,
  8162. "animationType": "discrete",
  8163. "percentages": "no",
  8164. "groups": [
  8165. "CSS Scroll Snap"
  8166. ],
  8167. "initial": "none",
  8168. "appliesto": "scrollContainers",
  8169. "computed": "asSpecified",
  8170. "order": "uniqueOrder",
  8171. "status": "obsolete",
  8172. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-x"
  8173. },
  8174. "scroll-snap-type-y": {
  8175. "syntax": "none | mandatory | proximity",
  8176. "media": "interactive",
  8177. "inherited": false,
  8178. "animationType": "discrete",
  8179. "percentages": "no",
  8180. "groups": [
  8181. "CSS Scroll Snap"
  8182. ],
  8183. "initial": "none",
  8184. "appliesto": "scrollContainers",
  8185. "computed": "asSpecified",
  8186. "order": "uniqueOrder",
  8187. "status": "obsolete",
  8188. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type-y"
  8189. },
  8190. "shape-image-threshold": {
  8191. "syntax": "<alpha-value>",
  8192. "media": "visual",
  8193. "inherited": false,
  8194. "animationType": "number",
  8195. "percentages": "no",
  8196. "groups": [
  8197. "CSS Shapes"
  8198. ],
  8199. "initial": "0.0",
  8200. "appliesto": "floats",
  8201. "computed": "specifiedValueNumberClipped0To1",
  8202. "order": "uniqueOrder",
  8203. "status": "standard",
  8204. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-image-threshold"
  8205. },
  8206. "shape-margin": {
  8207. "syntax": "<length-percentage>",
  8208. "media": "visual",
  8209. "inherited": false,
  8210. "animationType": "lpc",
  8211. "percentages": "referToWidthOfContainingBlock",
  8212. "groups": [
  8213. "CSS Shapes"
  8214. ],
  8215. "initial": "0",
  8216. "appliesto": "floats",
  8217. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8218. "order": "uniqueOrder",
  8219. "status": "standard",
  8220. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-margin"
  8221. },
  8222. "shape-outside": {
  8223. "syntax": "none | <shape-box> || <basic-shape> | <image>",
  8224. "media": "visual",
  8225. "inherited": false,
  8226. "animationType": "basicShapeOtherwiseNo",
  8227. "percentages": "no",
  8228. "groups": [
  8229. "CSS Shapes"
  8230. ],
  8231. "initial": "none",
  8232. "appliesto": "floats",
  8233. "computed": "asDefinedForBasicShapeWithAbsoluteURIOtherwiseAsSpecified",
  8234. "order": "uniqueOrder",
  8235. "status": "standard",
  8236. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/shape-outside"
  8237. },
  8238. "tab-size": {
  8239. "syntax": "<integer> | <length>",
  8240. "media": "visual",
  8241. "inherited": true,
  8242. "animationType": "length",
  8243. "percentages": "no",
  8244. "groups": [
  8245. "CSS Text"
  8246. ],
  8247. "initial": "8",
  8248. "appliesto": "blockContainers",
  8249. "computed": "specifiedIntegerOrAbsoluteLength",
  8250. "order": "uniqueOrder",
  8251. "status": "standard",
  8252. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/tab-size"
  8253. },
  8254. "table-layout": {
  8255. "syntax": "auto | fixed",
  8256. "media": "visual",
  8257. "inherited": false,
  8258. "animationType": "discrete",
  8259. "percentages": "no",
  8260. "groups": [
  8261. "CSS Table"
  8262. ],
  8263. "initial": "auto",
  8264. "appliesto": "tableElements",
  8265. "computed": "asSpecified",
  8266. "order": "uniqueOrder",
  8267. "status": "standard",
  8268. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/table-layout"
  8269. },
  8270. "text-align": {
  8271. "syntax": "start | end | left | right | center | justify | match-parent",
  8272. "media": "visual",
  8273. "inherited": true,
  8274. "animationType": "discrete",
  8275. "percentages": "no",
  8276. "groups": [
  8277. "CSS Text"
  8278. ],
  8279. "initial": "startOrNamelessValueIfLTRRightIfRTL",
  8280. "appliesto": "blockContainers",
  8281. "computed": "asSpecifiedExceptMatchParent",
  8282. "order": "orderOfAppearance",
  8283. "alsoAppliesTo": [
  8284. "::placeholder"
  8285. ],
  8286. "status": "standard",
  8287. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-align"
  8288. },
  8289. "text-align-last": {
  8290. "syntax": "auto | start | end | left | right | center | justify",
  8291. "media": "visual",
  8292. "inherited": true,
  8293. "animationType": "discrete",
  8294. "percentages": "no",
  8295. "groups": [
  8296. "CSS Text"
  8297. ],
  8298. "initial": "auto",
  8299. "appliesto": "blockContainers",
  8300. "computed": "asSpecified",
  8301. "order": "uniqueOrder",
  8302. "status": "standard",
  8303. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-align-last"
  8304. },
  8305. "text-combine-upright": {
  8306. "syntax": "none | all | [ digits <integer>? ]",
  8307. "media": "visual",
  8308. "inherited": true,
  8309. "animationType": "notAnimatable",
  8310. "percentages": "no",
  8311. "groups": [
  8312. "CSS Writing Modes"
  8313. ],
  8314. "initial": "none",
  8315. "appliesto": "nonReplacedInlineElements",
  8316. "computed": "keywordPlusIntegerIfDigits",
  8317. "order": "uniqueOrder",
  8318. "status": "standard",
  8319. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-combine-upright"
  8320. },
  8321. "text-decoration": {
  8322. "syntax": "<'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-thickness'>",
  8323. "media": "visual",
  8324. "inherited": false,
  8325. "animationType": [
  8326. "text-decoration-color",
  8327. "text-decoration-style",
  8328. "text-decoration-line",
  8329. "text-decoration-thickness"
  8330. ],
  8331. "percentages": "no",
  8332. "groups": [
  8333. "CSS Text Decoration"
  8334. ],
  8335. "initial": [
  8336. "text-decoration-color",
  8337. "text-decoration-style",
  8338. "text-decoration-line"
  8339. ],
  8340. "appliesto": "allElements",
  8341. "computed": [
  8342. "text-decoration-line",
  8343. "text-decoration-style",
  8344. "text-decoration-color",
  8345. "text-decoration-thickness"
  8346. ],
  8347. "order": "orderOfAppearance",
  8348. "alsoAppliesTo": [
  8349. "::first-letter",
  8350. "::first-line",
  8351. "::placeholder"
  8352. ],
  8353. "status": "standard",
  8354. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration"
  8355. },
  8356. "text-decoration-color": {
  8357. "syntax": "<color>",
  8358. "media": "visual",
  8359. "inherited": false,
  8360. "animationType": "color",
  8361. "percentages": "no",
  8362. "groups": [
  8363. "CSS Text Decoration"
  8364. ],
  8365. "initial": "currentcolor",
  8366. "appliesto": "allElements",
  8367. "computed": "computedColor",
  8368. "order": "uniqueOrder",
  8369. "alsoAppliesTo": [
  8370. "::first-letter",
  8371. "::first-line",
  8372. "::placeholder"
  8373. ],
  8374. "status": "standard",
  8375. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-color"
  8376. },
  8377. "text-decoration-line": {
  8378. "syntax": "none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error",
  8379. "media": "visual",
  8380. "inherited": false,
  8381. "animationType": "discrete",
  8382. "percentages": "no",
  8383. "groups": [
  8384. "CSS Text Decoration"
  8385. ],
  8386. "initial": "none",
  8387. "appliesto": "allElements",
  8388. "computed": "asSpecified",
  8389. "order": "orderOfAppearance",
  8390. "alsoAppliesTo": [
  8391. "::first-letter",
  8392. "::first-line",
  8393. "::placeholder"
  8394. ],
  8395. "status": "standard",
  8396. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-line"
  8397. },
  8398. "text-decoration-skip": {
  8399. "syntax": "none | [ objects || [ spaces | [ leading-spaces || trailing-spaces ] ] || edges || box-decoration ]",
  8400. "media": "visual",
  8401. "inherited": true,
  8402. "animationType": "discrete",
  8403. "percentages": "no",
  8404. "groups": [
  8405. "CSS Text Decoration"
  8406. ],
  8407. "initial": "objects",
  8408. "appliesto": "allElements",
  8409. "computed": "asSpecified",
  8410. "order": "orderOfAppearance",
  8411. "status": "experimental",
  8412. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip"
  8413. },
  8414. "text-decoration-skip-ink": {
  8415. "syntax": "auto | all | none",
  8416. "media": "visual",
  8417. "inherited": true,
  8418. "animationType": "discrete",
  8419. "percentages": "no",
  8420. "groups": [
  8421. "CSS Text Decoration"
  8422. ],
  8423. "initial": "auto",
  8424. "appliesto": "allElements",
  8425. "computed": "asSpecified",
  8426. "order": "orderOfAppearance",
  8427. "status": "standard",
  8428. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip-ink"
  8429. },
  8430. "text-decoration-style": {
  8431. "syntax": "solid | double | dotted | dashed | wavy",
  8432. "media": "visual",
  8433. "inherited": false,
  8434. "animationType": "discrete",
  8435. "percentages": "no",
  8436. "groups": [
  8437. "CSS Text Decoration"
  8438. ],
  8439. "initial": "solid",
  8440. "appliesto": "allElements",
  8441. "computed": "asSpecified",
  8442. "order": "uniqueOrder",
  8443. "alsoAppliesTo": [
  8444. "::first-letter",
  8445. "::first-line",
  8446. "::placeholder"
  8447. ],
  8448. "status": "standard",
  8449. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-style"
  8450. },
  8451. "text-decoration-thickness": {
  8452. "syntax": "auto | from-font | <length> | <percentage> ",
  8453. "media": "visual",
  8454. "inherited": false,
  8455. "animationType": "byComputedValueType",
  8456. "percentages": "referToElementFontSize",
  8457. "groups": [
  8458. "CSS Text Decoration"
  8459. ],
  8460. "initial": "auto",
  8461. "appliesto": "allElements",
  8462. "computed": "asSpecified",
  8463. "order": "uniqueOrder",
  8464. "alsoAppliesTo": [
  8465. "::first-letter",
  8466. "::first-line",
  8467. "::placeholder"
  8468. ],
  8469. "status": "standard",
  8470. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-decoration-thickness"
  8471. },
  8472. "text-emphasis": {
  8473. "syntax": "<'text-emphasis-style'> || <'text-emphasis-color'>",
  8474. "media": "visual",
  8475. "inherited": false,
  8476. "animationType": [
  8477. "text-emphasis-color",
  8478. "text-emphasis-style"
  8479. ],
  8480. "percentages": "no",
  8481. "groups": [
  8482. "CSS Text Decoration"
  8483. ],
  8484. "initial": [
  8485. "text-emphasis-style",
  8486. "text-emphasis-color"
  8487. ],
  8488. "appliesto": "allElements",
  8489. "computed": [
  8490. "text-emphasis-style",
  8491. "text-emphasis-color"
  8492. ],
  8493. "order": "orderOfAppearance",
  8494. "status": "standard",
  8495. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis"
  8496. },
  8497. "text-emphasis-color": {
  8498. "syntax": "<color>",
  8499. "media": "visual",
  8500. "inherited": false,
  8501. "animationType": "color",
  8502. "percentages": "no",
  8503. "groups": [
  8504. "CSS Text Decoration"
  8505. ],
  8506. "initial": "currentcolor",
  8507. "appliesto": "allElements",
  8508. "computed": "computedColor",
  8509. "order": "uniqueOrder",
  8510. "status": "standard",
  8511. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color"
  8512. },
  8513. "text-emphasis-position": {
  8514. "syntax": "[ over | under ] && [ right | left ]",
  8515. "media": "visual",
  8516. "inherited": false,
  8517. "animationType": "discrete",
  8518. "percentages": "no",
  8519. "groups": [
  8520. "CSS Text Decoration"
  8521. ],
  8522. "initial": "over right",
  8523. "appliesto": "allElements",
  8524. "computed": "asSpecified",
  8525. "order": "uniqueOrder",
  8526. "status": "standard",
  8527. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position"
  8528. },
  8529. "text-emphasis-style": {
  8530. "syntax": "none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>",
  8531. "media": "visual",
  8532. "inherited": false,
  8533. "animationType": "discrete",
  8534. "percentages": "no",
  8535. "groups": [
  8536. "CSS Text Decoration"
  8537. ],
  8538. "initial": "none",
  8539. "appliesto": "allElements",
  8540. "computed": "asSpecified",
  8541. "order": "uniqueOrder",
  8542. "status": "standard",
  8543. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style"
  8544. },
  8545. "text-indent": {
  8546. "syntax": "<length-percentage> && hanging? && each-line?",
  8547. "media": "visual",
  8548. "inherited": true,
  8549. "animationType": "lpc",
  8550. "percentages": "referToWidthOfContainingBlock",
  8551. "groups": [
  8552. "CSS Text"
  8553. ],
  8554. "initial": "0",
  8555. "appliesto": "blockContainers",
  8556. "computed": "percentageOrAbsoluteLengthPlusKeywords",
  8557. "order": "lengthOrPercentageBeforeKeywords",
  8558. "status": "standard",
  8559. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-indent"
  8560. },
  8561. "text-justify": {
  8562. "syntax": "auto | inter-character | inter-word | none",
  8563. "media": "visual",
  8564. "inherited": true,
  8565. "animationType": "discrete",
  8566. "percentages": "no",
  8567. "groups": [
  8568. "CSS Text"
  8569. ],
  8570. "initial": "auto",
  8571. "appliesto": "inlineLevelAndTableCellElements",
  8572. "computed": "asSpecified",
  8573. "order": "uniqueOrder",
  8574. "status": "standard",
  8575. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-justify"
  8576. },
  8577. "text-orientation": {
  8578. "syntax": "mixed | upright | sideways",
  8579. "media": "visual",
  8580. "inherited": true,
  8581. "animationType": "discrete",
  8582. "percentages": "no",
  8583. "groups": [
  8584. "CSS Writing Modes"
  8585. ],
  8586. "initial": "mixed",
  8587. "appliesto": "allElementsExceptTableRowGroupsRowsColumnGroupsAndColumns",
  8588. "computed": "asSpecified",
  8589. "order": "uniqueOrder",
  8590. "status": "standard",
  8591. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-orientation"
  8592. },
  8593. "text-overflow": {
  8594. "syntax": "[ clip | ellipsis | <string> ]{1,2}",
  8595. "media": "visual",
  8596. "inherited": false,
  8597. "animationType": "discrete",
  8598. "percentages": "no",
  8599. "groups": [
  8600. "CSS Basic User Interface"
  8601. ],
  8602. "initial": "clip",
  8603. "appliesto": "blockContainerElements",
  8604. "computed": "asSpecified",
  8605. "order": "uniqueOrder",
  8606. "alsoAppliesTo": [
  8607. "::placeholder"
  8608. ],
  8609. "status": "standard",
  8610. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-overflow"
  8611. },
  8612. "text-rendering": {
  8613. "syntax": "auto | optimizeSpeed | optimizeLegibility | geometricPrecision",
  8614. "media": "visual",
  8615. "inherited": true,
  8616. "animationType": "discrete",
  8617. "percentages": "no",
  8618. "groups": [
  8619. "CSS Miscellaneous"
  8620. ],
  8621. "initial": "auto",
  8622. "appliesto": "textElements",
  8623. "computed": "asSpecified",
  8624. "order": "uniqueOrder",
  8625. "status": "standard",
  8626. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-rendering"
  8627. },
  8628. "text-shadow": {
  8629. "syntax": "none | <shadow-t>#",
  8630. "media": "visual",
  8631. "inherited": true,
  8632. "animationType": "shadowList",
  8633. "percentages": "no",
  8634. "groups": [
  8635. "CSS Text Decoration"
  8636. ],
  8637. "initial": "none",
  8638. "appliesto": "allElements",
  8639. "computed": "colorPlusThreeAbsoluteLengths",
  8640. "order": "uniqueOrder",
  8641. "alsoAppliesTo": [
  8642. "::first-letter",
  8643. "::first-line",
  8644. "::placeholder"
  8645. ],
  8646. "status": "standard",
  8647. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-shadow"
  8648. },
  8649. "text-size-adjust": {
  8650. "syntax": "none | auto | <percentage>",
  8651. "media": "visual",
  8652. "inherited": true,
  8653. "animationType": "discrete",
  8654. "percentages": "referToSizeOfFont",
  8655. "groups": [
  8656. "CSS Text"
  8657. ],
  8658. "initial": "autoForSmartphoneBrowsersSupportingInflation",
  8659. "appliesto": "allElements",
  8660. "computed": "asSpecified",
  8661. "order": "uniqueOrder",
  8662. "status": "experimental",
  8663. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-size-adjust"
  8664. },
  8665. "text-transform": {
  8666. "syntax": "none | capitalize | uppercase | lowercase | full-width | full-size-kana",
  8667. "media": "visual",
  8668. "inherited": true,
  8669. "animationType": "discrete",
  8670. "percentages": "no",
  8671. "groups": [
  8672. "CSS Text"
  8673. ],
  8674. "initial": "none",
  8675. "appliesto": "allElements",
  8676. "computed": "asSpecified",
  8677. "order": "uniqueOrder",
  8678. "alsoAppliesTo": [
  8679. "::first-letter",
  8680. "::first-line",
  8681. "::placeholder"
  8682. ],
  8683. "status": "standard",
  8684. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-transform"
  8685. },
  8686. "text-underline-offset": {
  8687. "syntax": "auto | <length> | <percentage> ",
  8688. "media": "visual",
  8689. "inherited": true,
  8690. "animationType": "byComputedValueType",
  8691. "percentages": "referToElementFontSize",
  8692. "groups": [
  8693. "CSS Text Decoration"
  8694. ],
  8695. "initial": "auto",
  8696. "appliesto": "allElements",
  8697. "computed": "asSpecified",
  8698. "order": "uniqueOrder",
  8699. "alsoAppliesTo": [
  8700. "::first-letter",
  8701. "::first-line",
  8702. "::placeholder"
  8703. ],
  8704. "status": "standard",
  8705. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-offset"
  8706. },
  8707. "text-underline-position": {
  8708. "syntax": "auto | from-font | [ under || [ left | right ] ]",
  8709. "media": "visual",
  8710. "inherited": true,
  8711. "animationType": "discrete",
  8712. "percentages": "no",
  8713. "groups": [
  8714. "CSS Text Decoration"
  8715. ],
  8716. "initial": "auto",
  8717. "appliesto": "allElements",
  8718. "computed": "asSpecified",
  8719. "order": "orderOfAppearance",
  8720. "status": "standard",
  8721. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/text-underline-position"
  8722. },
  8723. "top": {
  8724. "syntax": "<length> | <percentage> | auto",
  8725. "media": "visual",
  8726. "inherited": false,
  8727. "animationType": "lpc",
  8728. "percentages": "referToContainingBlockHeight",
  8729. "groups": [
  8730. "CSS Positioning"
  8731. ],
  8732. "initial": "auto",
  8733. "appliesto": "positionedElements",
  8734. "computed": "lengthAbsolutePercentageAsSpecifiedOtherwiseAuto",
  8735. "order": "uniqueOrder",
  8736. "status": "standard",
  8737. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/top"
  8738. },
  8739. "touch-action": {
  8740. "syntax": "auto | none | [ [ pan-x | pan-left | pan-right ] || [ pan-y | pan-up | pan-down ] || pinch-zoom ] | manipulation",
  8741. "media": "visual",
  8742. "inherited": false,
  8743. "animationType": "discrete",
  8744. "percentages": "no",
  8745. "groups": [
  8746. "Pointer Events"
  8747. ],
  8748. "initial": "auto",
  8749. "appliesto": "allElementsExceptNonReplacedInlineElementsTableRowsColumnsRowColumnGroups",
  8750. "computed": "asSpecified",
  8751. "order": "uniqueOrder",
  8752. "status": "standard",
  8753. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/touch-action"
  8754. },
  8755. "transform": {
  8756. "syntax": "none | <transform-list>",
  8757. "media": "visual",
  8758. "inherited": false,
  8759. "animationType": "transform",
  8760. "percentages": "referToSizeOfBoundingBox",
  8761. "groups": [
  8762. "CSS Transforms"
  8763. ],
  8764. "initial": "none",
  8765. "appliesto": "transformableElements",
  8766. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8767. "order": "uniqueOrder",
  8768. "stacking": true,
  8769. "status": "standard",
  8770. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform"
  8771. },
  8772. "transform-box": {
  8773. "syntax": "content-box | border-box | fill-box | stroke-box | view-box",
  8774. "media": "visual",
  8775. "inherited": false,
  8776. "animationType": "discrete",
  8777. "percentages": "no",
  8778. "groups": [
  8779. "CSS Transforms"
  8780. ],
  8781. "initial": "view-box",
  8782. "appliesto": "transformableElements",
  8783. "computed": "asSpecified",
  8784. "order": "perGrammar",
  8785. "status": "standard",
  8786. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-box"
  8787. },
  8788. "transform-origin": {
  8789. "syntax": "[ <length-percentage> | left | center | right | top | bottom ] | [ [ <length-percentage> | left | center | right ] && [ <length-percentage> | top | center | bottom ] ] <length>?",
  8790. "media": "visual",
  8791. "inherited": false,
  8792. "animationType": "simpleListOfLpc",
  8793. "percentages": "referToSizeOfBoundingBox",
  8794. "groups": [
  8795. "CSS Transforms"
  8796. ],
  8797. "initial": "50% 50% 0",
  8798. "appliesto": "transformableElements",
  8799. "computed": "forLengthAbsoluteValueOtherwisePercentage",
  8800. "order": "oneOrTwoValuesLengthAbsoluteKeywordsPercentages",
  8801. "status": "standard",
  8802. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-origin"
  8803. },
  8804. "transform-style": {
  8805. "syntax": "flat | preserve-3d",
  8806. "media": "visual",
  8807. "inherited": false,
  8808. "animationType": "discrete",
  8809. "percentages": "no",
  8810. "groups": [
  8811. "CSS Transforms"
  8812. ],
  8813. "initial": "flat",
  8814. "appliesto": "transformableElements",
  8815. "computed": "asSpecified",
  8816. "order": "uniqueOrder",
  8817. "stacking": true,
  8818. "status": "standard",
  8819. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transform-style"
  8820. },
  8821. "transition": {
  8822. "syntax": "<single-transition>#",
  8823. "media": "interactive",
  8824. "inherited": false,
  8825. "animationType": "discrete",
  8826. "percentages": "no",
  8827. "groups": [
  8828. "CSS Transitions"
  8829. ],
  8830. "initial": [
  8831. "transition-delay",
  8832. "transition-duration",
  8833. "transition-property",
  8834. "transition-timing-function"
  8835. ],
  8836. "appliesto": "allElementsAndPseudos",
  8837. "computed": [
  8838. "transition-delay",
  8839. "transition-duration",
  8840. "transition-property",
  8841. "transition-timing-function"
  8842. ],
  8843. "order": "orderOfAppearance",
  8844. "status": "standard",
  8845. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition"
  8846. },
  8847. "transition-delay": {
  8848. "syntax": "<time>#",
  8849. "media": "interactive",
  8850. "inherited": false,
  8851. "animationType": "discrete",
  8852. "percentages": "no",
  8853. "groups": [
  8854. "CSS Transitions"
  8855. ],
  8856. "initial": "0s",
  8857. "appliesto": "allElementsAndPseudos",
  8858. "computed": "asSpecified",
  8859. "order": "uniqueOrder",
  8860. "status": "standard",
  8861. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-delay"
  8862. },
  8863. "transition-duration": {
  8864. "syntax": "<time>#",
  8865. "media": "interactive",
  8866. "inherited": false,
  8867. "animationType": "discrete",
  8868. "percentages": "no",
  8869. "groups": [
  8870. "CSS Transitions"
  8871. ],
  8872. "initial": "0s",
  8873. "appliesto": "allElementsAndPseudos",
  8874. "computed": "asSpecified",
  8875. "order": "uniqueOrder",
  8876. "status": "standard",
  8877. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-duration"
  8878. },
  8879. "transition-property": {
  8880. "syntax": "none | <single-transition-property>#",
  8881. "media": "visual",
  8882. "inherited": false,
  8883. "animationType": "discrete",
  8884. "percentages": "no",
  8885. "groups": [
  8886. "CSS Transitions"
  8887. ],
  8888. "initial": "all",
  8889. "appliesto": "allElementsAndPseudos",
  8890. "computed": "asSpecified",
  8891. "order": "uniqueOrder",
  8892. "status": "standard",
  8893. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-property"
  8894. },
  8895. "transition-timing-function": {
  8896. "syntax": "<timing-function>#",
  8897. "media": "interactive",
  8898. "inherited": false,
  8899. "animationType": "discrete",
  8900. "percentages": "no",
  8901. "groups": [
  8902. "CSS Transitions"
  8903. ],
  8904. "initial": "ease",
  8905. "appliesto": "allElementsAndPseudos",
  8906. "computed": "asSpecified",
  8907. "order": "uniqueOrder",
  8908. "status": "standard",
  8909. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/transition-timing-function"
  8910. },
  8911. "translate": {
  8912. "syntax": "none | <length-percentage> [ <length-percentage> <length>? ]?",
  8913. "media": "visual",
  8914. "inherited": false,
  8915. "animationType": "transform",
  8916. "percentages": "referToSizeOfBoundingBox",
  8917. "groups": [
  8918. "CSS Transforms"
  8919. ],
  8920. "initial": "none",
  8921. "appliesto": "transformableElements",
  8922. "computed": "asSpecifiedRelativeToAbsoluteLengths",
  8923. "order": "perGrammar",
  8924. "stacking": true,
  8925. "status": "standard",
  8926. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/translate"
  8927. },
  8928. "unicode-bidi": {
  8929. "syntax": "normal | embed | isolate | bidi-override | isolate-override | plaintext",
  8930. "media": "visual",
  8931. "inherited": false,
  8932. "animationType": "discrete",
  8933. "percentages": "no",
  8934. "groups": [
  8935. "CSS Writing Modes"
  8936. ],
  8937. "initial": "normal",
  8938. "appliesto": "allElementsSomeValuesNoEffectOnNonInlineElements",
  8939. "computed": "asSpecified",
  8940. "order": "uniqueOrder",
  8941. "status": "standard",
  8942. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/unicode-bidi"
  8943. },
  8944. "user-select": {
  8945. "syntax": "auto | text | none | contain | all",
  8946. "media": "visual",
  8947. "inherited": false,
  8948. "animationType": "discrete",
  8949. "percentages": "no",
  8950. "groups": [
  8951. "CSS Basic User Interface"
  8952. ],
  8953. "initial": "auto",
  8954. "appliesto": "allElements",
  8955. "computed": "asSpecified",
  8956. "order": "uniqueOrder",
  8957. "status": "nonstandard",
  8958. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/user-select"
  8959. },
  8960. "vertical-align": {
  8961. "syntax": "baseline | sub | super | text-top | text-bottom | middle | top | bottom | <percentage> | <length>",
  8962. "media": "visual",
  8963. "inherited": false,
  8964. "animationType": "length",
  8965. "percentages": "referToLineHeight",
  8966. "groups": [
  8967. "CSS Table"
  8968. ],
  8969. "initial": "baseline",
  8970. "appliesto": "inlineLevelAndTableCellElements",
  8971. "computed": "absoluteLengthOrKeyword",
  8972. "order": "uniqueOrder",
  8973. "alsoAppliesTo": [
  8974. "::first-letter",
  8975. "::first-line",
  8976. "::placeholder"
  8977. ],
  8978. "status": "standard",
  8979. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/vertical-align"
  8980. },
  8981. "visibility": {
  8982. "syntax": "visible | hidden | collapse",
  8983. "media": "visual",
  8984. "inherited": true,
  8985. "animationType": "visibility",
  8986. "percentages": "no",
  8987. "groups": [
  8988. "CSS Box Model"
  8989. ],
  8990. "initial": "visible",
  8991. "appliesto": "allElements",
  8992. "computed": "asSpecified",
  8993. "order": "uniqueOrder",
  8994. "status": "standard",
  8995. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/visibility"
  8996. },
  8997. "white-space": {
  8998. "syntax": "normal | pre | nowrap | pre-wrap | pre-line | break-spaces",
  8999. "media": "visual",
  9000. "inherited": true,
  9001. "animationType": "discrete",
  9002. "percentages": "no",
  9003. "groups": [
  9004. "CSS Text"
  9005. ],
  9006. "initial": "normal",
  9007. "appliesto": "allElements",
  9008. "computed": "asSpecified",
  9009. "order": "uniqueOrder",
  9010. "status": "standard",
  9011. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/white-space"
  9012. },
  9013. "widows": {
  9014. "syntax": "<integer>",
  9015. "media": "visual",
  9016. "inherited": true,
  9017. "animationType": "discrete",
  9018. "percentages": "no",
  9019. "groups": [
  9020. "CSS Fragmentation"
  9021. ],
  9022. "initial": "2",
  9023. "appliesto": "blockContainerElements",
  9024. "computed": "asSpecified",
  9025. "order": "perGrammar",
  9026. "status": "standard",
  9027. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/widows"
  9028. },
  9029. "width": {
  9030. "syntax": "auto | <length> | <percentage> | min-content | max-content | fit-content(<length-percentage>)",
  9031. "media": "visual",
  9032. "inherited": false,
  9033. "animationType": "lpc",
  9034. "percentages": "referToWidthOfContainingBlock",
  9035. "groups": [
  9036. "CSS Box Model"
  9037. ],
  9038. "initial": "auto",
  9039. "appliesto": "allElementsButNonReplacedAndTableRows",
  9040. "computed": "percentageAutoOrAbsoluteLength",
  9041. "order": "lengthOrPercentageBeforeKeywordIfBothPresent",
  9042. "status": "standard",
  9043. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/width"
  9044. },
  9045. "will-change": {
  9046. "syntax": "auto | <animateable-feature>#",
  9047. "media": "all",
  9048. "inherited": false,
  9049. "animationType": "discrete",
  9050. "percentages": "no",
  9051. "groups": [
  9052. "CSS Will Change"
  9053. ],
  9054. "initial": "auto",
  9055. "appliesto": "allElements",
  9056. "computed": "asSpecified",
  9057. "order": "uniqueOrder",
  9058. "status": "standard",
  9059. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/will-change"
  9060. },
  9061. "word-break": {
  9062. "syntax": "normal | break-all | keep-all | break-word",
  9063. "media": "visual",
  9064. "inherited": true,
  9065. "animationType": "discrete",
  9066. "percentages": "no",
  9067. "groups": [
  9068. "CSS Text"
  9069. ],
  9070. "initial": "normal",
  9071. "appliesto": "allElements",
  9072. "computed": "asSpecified",
  9073. "order": "uniqueOrder",
  9074. "status": "standard",
  9075. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/word-break"
  9076. },
  9077. "word-spacing": {
  9078. "syntax": "normal | <length-percentage>",
  9079. "media": "visual",
  9080. "inherited": true,
  9081. "animationType": "length",
  9082. "percentages": "referToWidthOfAffectedGlyph",
  9083. "groups": [
  9084. "CSS Text"
  9085. ],
  9086. "initial": "normal",
  9087. "appliesto": "allElements",
  9088. "computed": "optimumMinAndMaxValueOfAbsoluteLengthPercentageOrNormal",
  9089. "order": "uniqueOrder",
  9090. "alsoAppliesTo": [
  9091. "::first-letter",
  9092. "::first-line",
  9093. "::placeholder"
  9094. ],
  9095. "status": "standard",
  9096. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/word-spacing"
  9097. },
  9098. "word-wrap": {
  9099. "syntax": "normal | break-word",
  9100. "media": "visual",
  9101. "inherited": true,
  9102. "animationType": "discrete",
  9103. "percentages": "no",
  9104. "groups": [
  9105. "CSS Text"
  9106. ],
  9107. "initial": "normal",
  9108. "appliesto": "nonReplacedInlineElements",
  9109. "computed": "asSpecified",
  9110. "order": "uniqueOrder",
  9111. "status": "standard",
  9112. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/overflow-wrap"
  9113. },
  9114. "writing-mode": {
  9115. "syntax": "horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr",
  9116. "media": "visual",
  9117. "inherited": true,
  9118. "animationType": "discrete",
  9119. "percentages": "no",
  9120. "groups": [
  9121. "CSS Writing Modes"
  9122. ],
  9123. "initial": "horizontal-tb",
  9124. "appliesto": "allElementsExceptTableRowColumnGroupsTableRowsColumns",
  9125. "computed": "asSpecified",
  9126. "order": "uniqueOrder",
  9127. "status": "standard",
  9128. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/writing-mode"
  9129. },
  9130. "z-index": {
  9131. "syntax": "auto | <integer>",
  9132. "media": "visual",
  9133. "inherited": false,
  9134. "animationType": "integer",
  9135. "percentages": "no",
  9136. "groups": [
  9137. "CSS Positioning"
  9138. ],
  9139. "initial": "auto",
  9140. "appliesto": "positionedElements",
  9141. "computed": "asSpecified",
  9142. "order": "uniqueOrder",
  9143. "stacking": true,
  9144. "status": "standard",
  9145. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/z-index"
  9146. },
  9147. "zoom": {
  9148. "syntax": "normal | reset | <number> | <percentage>",
  9149. "media": "visual",
  9150. "inherited": false,
  9151. "animationType": "integer",
  9152. "percentages": "no",
  9153. "groups": [
  9154. "Microsoft Extensions"
  9155. ],
  9156. "initial": "normal",
  9157. "appliesto": "allElements",
  9158. "computed": "asSpecified",
  9159. "order": "uniqueOrder",
  9160. "status": "nonstandard",
  9161. "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/zoom"
  9162. }
  9163. }