propertyDefinitions.js 397 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033
  1. "use strict";
  2. // autogenerated - 2026-01-06
  3. module.exports = new Map([
  4. [
  5. "-webkit-flex-wrap",
  6. {
  7. "name": "-webkit-flex-wrap",
  8. "href": "https://compat.spec.whatwg.org/#propdef--webkit-flex-wrap",
  9. "legacyAliasOf": "flex-wrap",
  10. "styleDeclaration": [
  11. "-webkit-flex-wrap",
  12. "WebkitFlexWrap",
  13. "webkitFlexWrap"
  14. ],
  15. "extended": [],
  16. "syntax": "nowrap | wrap | wrap-reverse"
  17. }
  18. ],
  19. [
  20. "-webkit-line-clamp",
  21. {
  22. "name": "-webkit-line-clamp",
  23. "href": "https://drafts.csswg.org/css-overflow-4/#propdef--webkit-line-clamp",
  24. "initial": "none",
  25. "appliesTo": "see individual properties",
  26. "inherited": "see individual properties",
  27. "percentages": "N/A",
  28. "computedValue": "see individual properties",
  29. "animationType": "see individual properties",
  30. "canonicalOrder": "per grammar",
  31. "styleDeclaration": [
  32. "-webkit-line-clamp",
  33. "WebkitLineClamp",
  34. "webkitLineClamp"
  35. ],
  36. "syntax": "none | <integer [1,∞]>",
  37. "extended": []
  38. }
  39. ],
  40. [
  41. "-webkit-mask-box-image-outset",
  42. {
  43. "name": "-webkit-mask-box-image-outset",
  44. "href": "https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-outset",
  45. "legacyAliasOf": "mask-border-outset",
  46. "styleDeclaration": [
  47. "-webkit-mask-box-image-outset",
  48. "WebkitMaskBoxImageOutset",
  49. "webkitMaskBoxImageOutset"
  50. ],
  51. "extended": [],
  52. "syntax": "[ <length> | <number> ]{1,4}"
  53. }
  54. ],
  55. [
  56. "-webkit-mask-box-image-repeat",
  57. {
  58. "name": "-webkit-mask-box-image-repeat",
  59. "href": "https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-repeat",
  60. "legacyAliasOf": "mask-border-repeat",
  61. "styleDeclaration": [
  62. "-webkit-mask-box-image-repeat",
  63. "WebkitMaskBoxImageRepeat",
  64. "webkitMaskBoxImageRepeat"
  65. ],
  66. "extended": [],
  67. "syntax": "[ stretch | repeat | round | space ]{1,2}"
  68. }
  69. ],
  70. [
  71. "-webkit-mask-box-image-slice",
  72. {
  73. "name": "-webkit-mask-box-image-slice",
  74. "href": "https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-slice",
  75. "legacyAliasOf": "mask-border-slice",
  76. "styleDeclaration": [
  77. "-webkit-mask-box-image-slice",
  78. "WebkitMaskBoxImageSlice",
  79. "webkitMaskBoxImageSlice"
  80. ],
  81. "extended": [],
  82. "syntax": "[ <number> | <percentage> ]{1,4} fill?"
  83. }
  84. ],
  85. [
  86. "-webkit-mask-box-image-source",
  87. {
  88. "name": "-webkit-mask-box-image-source",
  89. "href": "https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-source",
  90. "legacyAliasOf": "mask-border-source",
  91. "styleDeclaration": [
  92. "-webkit-mask-box-image-source",
  93. "WebkitMaskBoxImageSource",
  94. "webkitMaskBoxImageSource"
  95. ],
  96. "extended": [],
  97. "syntax": "none | <image>"
  98. }
  99. ],
  100. [
  101. "-webkit-mask-box-image-width",
  102. {
  103. "name": "-webkit-mask-box-image-width",
  104. "href": "https://compat.spec.whatwg.org/#propdef--webkit-mask-box-image-width",
  105. "legacyAliasOf": "mask-border-width",
  106. "styleDeclaration": [
  107. "-webkit-mask-box-image-width",
  108. "WebkitMaskBoxImageWidth",
  109. "webkitMaskBoxImageWidth"
  110. ],
  111. "extended": [],
  112. "syntax": "[ <length-percentage> | <number> | auto ]{1,4}"
  113. }
  114. ],
  115. [
  116. "-webkit-text-fill-color",
  117. {
  118. "name": "-webkit-text-fill-color",
  119. "href": "https://compat.spec.whatwg.org/#propdef--webkit-text-fill-color",
  120. "initial": "currentcolor",
  121. "appliesTo": "all elements",
  122. "inherited": "yes",
  123. "percentages": "N/A",
  124. "computedValue": "an RGBA color",
  125. "canonicalOrder": "per grammar",
  126. "animationType": "by computed value type",
  127. "media": "visual",
  128. "styleDeclaration": [
  129. "-webkit-text-fill-color",
  130. "WebkitTextFillColor",
  131. "webkitTextFillColor"
  132. ],
  133. "syntax": "<color>",
  134. "extended": []
  135. }
  136. ],
  137. [
  138. "-webkit-text-size-adjust",
  139. {
  140. "name": "-webkit-text-size-adjust",
  141. "href": "https://compat.spec.whatwg.org/#propdef--webkit-text-size-adjust",
  142. "legacyAliasOf": "text-size-adjust",
  143. "styleDeclaration": [
  144. "-webkit-text-size-adjust",
  145. "WebkitTextSizeAdjust",
  146. "webkitTextSizeAdjust"
  147. ],
  148. "extended": [],
  149. "syntax": "auto | none | <percentage [0,∞]>"
  150. }
  151. ],
  152. [
  153. "-webkit-text-stroke",
  154. {
  155. "name": "-webkit-text-stroke",
  156. "href": "https://compat.spec.whatwg.org/#propdef--webkit-text-stroke",
  157. "initial": "See individual properties",
  158. "appliesTo": "See individual properties",
  159. "inherited": "yes",
  160. "percentages": "N/A",
  161. "computedValue": "See individual properties",
  162. "canonicalOrder": "per grammar",
  163. "animationType": "See individual properties",
  164. "media": "visual",
  165. "styleDeclaration": [
  166. "-webkit-text-stroke",
  167. "WebkitTextStroke",
  168. "webkitTextStroke"
  169. ],
  170. "syntax": "<line-width> || <color>",
  171. "extended": []
  172. }
  173. ],
  174. [
  175. "-webkit-text-stroke-color",
  176. {
  177. "name": "-webkit-text-stroke-color",
  178. "href": "https://compat.spec.whatwg.org/#propdef--webkit-text-stroke-color",
  179. "initial": "currentcolor",
  180. "appliesTo": "all elements",
  181. "inherited": "yes",
  182. "percentages": "N/A",
  183. "computedValue": "an RGBA color",
  184. "canonicalOrder": "per grammar",
  185. "animationType": "by computed value type",
  186. "media": "visual",
  187. "styleDeclaration": [
  188. "-webkit-text-stroke-color",
  189. "WebkitTextStrokeColor",
  190. "webkitTextStrokeColor"
  191. ],
  192. "syntax": "<color>",
  193. "extended": []
  194. }
  195. ],
  196. [
  197. "-webkit-text-stroke-width",
  198. {
  199. "name": "-webkit-text-stroke-width",
  200. "href": "https://compat.spec.whatwg.org/#propdef--webkit-text-stroke-width",
  201. "initial": "0",
  202. "appliesTo": "all elements",
  203. "inherited": "yes",
  204. "percentages": "N/A",
  205. "computedValue": "absolute length",
  206. "canonicalOrder": "per grammar",
  207. "animationType": "discrete",
  208. "media": "visual",
  209. "styleDeclaration": [
  210. "-webkit-text-stroke-width",
  211. "WebkitTextStrokeWidth",
  212. "webkitTextStrokeWidth"
  213. ],
  214. "syntax": "<line-width>",
  215. "extended": []
  216. }
  217. ],
  218. [
  219. "-webkit-transform",
  220. {
  221. "name": "-webkit-transform",
  222. "href": "https://compat.spec.whatwg.org/#propdef--webkit-transform",
  223. "legacyAliasOf": "transform",
  224. "styleDeclaration": [
  225. "-webkit-transform",
  226. "WebkitTransform",
  227. "webkitTransform"
  228. ],
  229. "extended": [],
  230. "syntax": "none | <transform-list>"
  231. }
  232. ],
  233. [
  234. "accent-color",
  235. {
  236. "name": "accent-color",
  237. "href": "https://drafts.csswg.org/css-ui-4/#propdef-accent-color",
  238. "initial": "auto",
  239. "appliesTo": "all elements",
  240. "inherited": "yes",
  241. "percentages": "N/A",
  242. "computedValue": "the keyword auto or a computed color",
  243. "canonicalOrder": "per grammar",
  244. "animationType": "by computed value type",
  245. "styleDeclaration": [
  246. "accent-color",
  247. "accentColor"
  248. ],
  249. "syntax": "auto | <color>",
  250. "extended": []
  251. }
  252. ],
  253. [
  254. "align-content",
  255. {
  256. "name": "align-content",
  257. "href": "https://drafts.csswg.org/css-align-3/#propdef-align-content",
  258. "initial": "normal",
  259. "appliesTo": "block containers, multicol containers, flex containers, and grid containers",
  260. "inherited": "no",
  261. "percentages": "n/a",
  262. "computedValue": "specified keyword(s)",
  263. "canonicalOrder": "per grammar",
  264. "animationType": "discrete",
  265. "styleDeclaration": [
  266. "align-content",
  267. "alignContent"
  268. ],
  269. "syntax": "normal | <baseline-position> | <content-distribution> | <overflow-position>? <content-position>",
  270. "extended": []
  271. }
  272. ],
  273. [
  274. "align-items",
  275. {
  276. "name": "align-items",
  277. "href": "https://drafts.csswg.org/css-align-3/#propdef-align-items",
  278. "initial": "normal",
  279. "appliesTo": "all elements",
  280. "inherited": "no",
  281. "percentages": "n/a",
  282. "computedValue": "specified keyword(s)",
  283. "canonicalOrder": "per grammar",
  284. "animationType": "discrete",
  285. "styleDeclaration": [
  286. "align-items",
  287. "alignItems"
  288. ],
  289. "syntax": "normal | stretch | <baseline-position> | <overflow-position>? <self-position> | anchor-center",
  290. "extended": [
  291. "https://drafts.csswg.org/css-anchor-position-1/"
  292. ]
  293. }
  294. ],
  295. [
  296. "align-self",
  297. {
  298. "name": "align-self",
  299. "href": "https://drafts.csswg.org/css-align-3/#propdef-align-self",
  300. "initial": "auto",
  301. "appliesTo": "flex items, grid items, and absolutely-positioned boxes",
  302. "inherited": "no",
  303. "percentages": "n/a",
  304. "computedValue": "specified keyword(s)",
  305. "canonicalOrder": "per grammar",
  306. "animationType": "discrete",
  307. "styleDeclaration": [
  308. "align-self",
  309. "alignSelf"
  310. ],
  311. "syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? <self-position> | anchor-center",
  312. "extended": [
  313. "https://drafts.csswg.org/css-anchor-position-1/"
  314. ]
  315. }
  316. ],
  317. [
  318. "alignment-baseline",
  319. {
  320. "name": "alignment-baseline",
  321. "href": "https://drafts.csswg.org/css-inline-3/#propdef-alignment-baseline",
  322. "initial": "baseline",
  323. "appliesTo": "inline-level boxes, flex items, grid items, table cells, and SVG text content elements",
  324. "inherited": "no",
  325. "percentages": "N/A",
  326. "computedValue": "specified keyword",
  327. "canonicalOrder": "per grammar",
  328. "animationType": "discrete",
  329. "styleDeclaration": [
  330. "alignment-baseline",
  331. "alignmentBaseline"
  332. ],
  333. "syntax": "baseline | text-bottom | alphabetic | ideographic | middle | central | mathematical | text-top",
  334. "extended": []
  335. }
  336. ],
  337. [
  338. "all",
  339. {
  340. "name": "all",
  341. "href": "https://drafts.csswg.org/css-cascade-5/#propdef-all",
  342. "initial": "see individual properties",
  343. "appliesTo": "see individual properties",
  344. "inherited": "see individual properties",
  345. "percentages": "see individual properties",
  346. "computedValue": "see individual properties",
  347. "animationType": "see individual properties",
  348. "canonicalOrder": "per grammar",
  349. "styleDeclaration": [
  350. "all"
  351. ],
  352. "syntax": "initial | inherit | unset | revert | revert-layer | revert-rule",
  353. "extended": []
  354. }
  355. ],
  356. [
  357. "anchor-name",
  358. {
  359. "name": "anchor-name",
  360. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-name",
  361. "initial": "none",
  362. "appliesTo": "all elements that generate a principal box",
  363. "inherited": "no",
  364. "percentages": "n/a",
  365. "computedValue": "as specified",
  366. "canonicalOrder": "per grammar",
  367. "animationType": "discrete",
  368. "styleDeclaration": [
  369. "anchor-name",
  370. "anchorName"
  371. ],
  372. "syntax": "none | <dashed-ident>#",
  373. "extended": []
  374. }
  375. ],
  376. [
  377. "anchor-scope",
  378. {
  379. "name": "anchor-scope",
  380. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-anchor-scope",
  381. "initial": "none",
  382. "appliesTo": "all elements",
  383. "inherited": "no",
  384. "percentages": "n/a",
  385. "computedValue": "as specified",
  386. "canonicalOrder": "per grammar",
  387. "animationType": "discrete",
  388. "styleDeclaration": [
  389. "anchor-scope",
  390. "anchorScope"
  391. ],
  392. "syntax": "none | all | <dashed-ident>#",
  393. "extended": []
  394. }
  395. ],
  396. [
  397. "animation",
  398. {
  399. "name": "animation",
  400. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation",
  401. "initial": "see individual properties",
  402. "appliesTo": "all elements",
  403. "inherited": "no",
  404. "percentages": "N/A",
  405. "computedValue": "see individual properties",
  406. "canonicalOrder": "per grammar",
  407. "animationType": "not animatable",
  408. "styleDeclaration": [
  409. "animation"
  410. ],
  411. "syntax": "<single-animation>#",
  412. "extended": []
  413. }
  414. ],
  415. [
  416. "animation-composition",
  417. {
  418. "name": "animation-composition",
  419. "href": "https://drafts.csswg.org/css-animations-2/#propdef-animation-composition",
  420. "initial": "replace",
  421. "appliesTo": "all elements",
  422. "inherited": "no",
  423. "percentages": "N/A",
  424. "computedValue": "list, each item a keyword as specified",
  425. "canonicalOrder": "per grammar",
  426. "animationType": "not animatable",
  427. "styleDeclaration": [
  428. "animation-composition",
  429. "animationComposition"
  430. ],
  431. "syntax": "<single-animation-composition>#",
  432. "extended": []
  433. }
  434. ],
  435. [
  436. "animation-delay",
  437. {
  438. "name": "animation-delay",
  439. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-delay",
  440. "initial": "0s",
  441. "appliesTo": "all elements",
  442. "inherited": "no",
  443. "percentages": "N/A",
  444. "computedValue": "list, each item a duration",
  445. "canonicalOrder": "per grammar",
  446. "animationType": "not animatable",
  447. "styleDeclaration": [
  448. "animation-delay",
  449. "animationDelay"
  450. ],
  451. "syntax": "<time>#",
  452. "extended": []
  453. }
  454. ],
  455. [
  456. "animation-direction",
  457. {
  458. "name": "animation-direction",
  459. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-direction",
  460. "initial": "normal",
  461. "appliesTo": "all elements",
  462. "inherited": "no",
  463. "percentages": "N/A",
  464. "computedValue": "list, each item a keyword as specified",
  465. "canonicalOrder": "per grammar",
  466. "animationType": "not animatable",
  467. "styleDeclaration": [
  468. "animation-direction",
  469. "animationDirection"
  470. ],
  471. "syntax": "<single-animation-direction>#",
  472. "extended": []
  473. }
  474. ],
  475. [
  476. "animation-duration",
  477. {
  478. "name": "animation-duration",
  479. "href": "https://drafts.csswg.org/css-animations-2/#propdef-animation-duration",
  480. "initial": "auto",
  481. "appliesTo": "all elements",
  482. "inherited": "no",
  483. "percentages": "N/A",
  484. "computedValue": "list, each item either a time or the keyword auto",
  485. "canonicalOrder": "per grammar",
  486. "animationType": "not animatable",
  487. "styleDeclaration": [
  488. "animation-duration",
  489. "animationDuration"
  490. ],
  491. "syntax": "[ auto | <time [0s,∞]> ]#",
  492. "extended": []
  493. }
  494. ],
  495. [
  496. "animation-fill-mode",
  497. {
  498. "name": "animation-fill-mode",
  499. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-fill-mode",
  500. "initial": "none",
  501. "appliesTo": "all elements",
  502. "inherited": "no",
  503. "percentages": "N/A",
  504. "computedValue": "list, each item a keyword as specified",
  505. "canonicalOrder": "per grammar",
  506. "animationType": "not animatable",
  507. "styleDeclaration": [
  508. "animation-fill-mode",
  509. "animationFillMode"
  510. ],
  511. "syntax": "<single-animation-fill-mode>#",
  512. "extended": []
  513. }
  514. ],
  515. [
  516. "animation-iteration-count",
  517. {
  518. "name": "animation-iteration-count",
  519. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-iteration-count",
  520. "initial": "1",
  521. "appliesTo": "all elements",
  522. "inherited": "no",
  523. "percentages": "N/A",
  524. "computedValue": "list, each item either a number or the keyword infinite",
  525. "canonicalOrder": "per grammar",
  526. "animationType": "not animatable",
  527. "styleDeclaration": [
  528. "animation-iteration-count",
  529. "animationIterationCount"
  530. ],
  531. "syntax": "<single-animation-iteration-count>#",
  532. "extended": []
  533. }
  534. ],
  535. [
  536. "animation-name",
  537. {
  538. "name": "animation-name",
  539. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-name",
  540. "initial": "none",
  541. "appliesTo": "all elements",
  542. "inherited": "no",
  543. "percentages": "N/A",
  544. "computedValue": "list, each item either a case-sensitive css identifier or the keyword none",
  545. "canonicalOrder": "per grammar",
  546. "animationType": "not animatable",
  547. "styleDeclaration": [
  548. "animation-name",
  549. "animationName"
  550. ],
  551. "syntax": "[ none | <keyframes-name> ]#",
  552. "extended": []
  553. }
  554. ],
  555. [
  556. "animation-play-state",
  557. {
  558. "name": "animation-play-state",
  559. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-play-state",
  560. "initial": "running",
  561. "appliesTo": "all elements",
  562. "inherited": "no",
  563. "percentages": "N/A",
  564. "computedValue": "list, each item a keyword as specified",
  565. "canonicalOrder": "per grammar",
  566. "animationType": "not animatable",
  567. "styleDeclaration": [
  568. "animation-play-state",
  569. "animationPlayState"
  570. ],
  571. "syntax": "<single-animation-play-state>#",
  572. "extended": []
  573. }
  574. ],
  575. [
  576. "animation-range",
  577. {
  578. "name": "animation-range",
  579. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-animation-range",
  580. "initial": "see individual properties",
  581. "appliesTo": "see individual properties",
  582. "inherited": "see individual properties",
  583. "percentages": "see individual properties",
  584. "computedValue": "see individual properties",
  585. "animationType": "see individual properties",
  586. "canonicalOrder": "per grammar",
  587. "styleDeclaration": [
  588. "animation-range",
  589. "animationRange"
  590. ],
  591. "syntax": "[ <'animation-range-start'> <'animation-range-end'>? ]#",
  592. "extended": []
  593. }
  594. ],
  595. [
  596. "animation-range-end",
  597. {
  598. "name": "animation-range-end",
  599. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-animation-range-end",
  600. "initial": "normal",
  601. "appliesTo": "all elements",
  602. "inherited": "no",
  603. "percentages": "relative to the specified named timeline range if one was specified, else to the entire timeline",
  604. "computedValue": "list, each item either the keyword normal or a timeline range and progress percentage",
  605. "canonicalOrder": "per grammar",
  606. "animationType": "not animatable",
  607. "styleDeclaration": [
  608. "animation-range-end",
  609. "animationRangeEnd"
  610. ],
  611. "syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#",
  612. "extended": []
  613. }
  614. ],
  615. [
  616. "animation-range-start",
  617. {
  618. "name": "animation-range-start",
  619. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-animation-range-start",
  620. "initial": "normal",
  621. "appliesTo": "all elements",
  622. "inherited": "no",
  623. "percentages": "relative to the specified named timeline range if one was specified, else to the entire timeline",
  624. "computedValue": "list, each item either the keyword normal or a timeline range and progress percentage",
  625. "canonicalOrder": "per grammar",
  626. "animationType": "not animatable",
  627. "styleDeclaration": [
  628. "animation-range-start",
  629. "animationRangeStart"
  630. ],
  631. "syntax": "[ normal | <length-percentage> | <timeline-range-name> <length-percentage>? ]#",
  632. "extended": []
  633. }
  634. ],
  635. [
  636. "animation-timeline",
  637. {
  638. "name": "animation-timeline",
  639. "href": "https://drafts.csswg.org/css-animations-2/#propdef-animation-timeline",
  640. "initial": "auto",
  641. "appliesTo": "all elements",
  642. "inherited": "no",
  643. "percentages": "N/A",
  644. "computedValue": "list, each item either the keyword none, the keyword auto, a case-sensitive css identifier, a computed scroll() function, or a computed view() function",
  645. "canonicalOrder": "per grammar",
  646. "animationType": "not animatable",
  647. "styleDeclaration": [
  648. "animation-timeline",
  649. "animationTimeline"
  650. ],
  651. "syntax": "<single-animation-timeline>#",
  652. "extended": []
  653. }
  654. ],
  655. [
  656. "animation-timing-function",
  657. {
  658. "name": "animation-timing-function",
  659. "href": "https://drafts.csswg.org/css-animations-1/#propdef-animation-timing-function",
  660. "initial": "ease",
  661. "appliesTo": "all elements",
  662. "inherited": "no",
  663. "percentages": "N/A",
  664. "computedValue": "list, each item a computed <easing-function>",
  665. "canonicalOrder": "per grammar",
  666. "animationType": "not animatable",
  667. "styleDeclaration": [
  668. "animation-timing-function",
  669. "animationTimingFunction"
  670. ],
  671. "syntax": "<easing-function>#",
  672. "extended": []
  673. }
  674. ],
  675. [
  676. "appearance",
  677. {
  678. "name": "appearance",
  679. "href": "https://drafts.csswg.org/css-ui-4/#propdef-appearance",
  680. "initial": "none",
  681. "appliesTo": "all elements",
  682. "inherited": "no",
  683. "percentages": "n/a",
  684. "computedValue": "specified keyword",
  685. "canonicalOrder": "per grammar",
  686. "animationType": "discrete",
  687. "styleDeclaration": [
  688. "appearance"
  689. ],
  690. "syntax": "none | auto | base | base-select | <compat-auto> | <compat-special> | base",
  691. "extended": [
  692. "https://drafts.csswg.org/css-forms-1/"
  693. ]
  694. }
  695. ],
  696. [
  697. "aspect-ratio",
  698. {
  699. "name": "aspect-ratio",
  700. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-aspect-ratio",
  701. "initial": "auto",
  702. "appliesTo": "all elements except inline boxes and internal ruby or table boxes",
  703. "inherited": "no",
  704. "percentages": "n/a",
  705. "computedValue": "specified keyword or a pair of numbers",
  706. "canonicalOrder": "per grammar",
  707. "animationType": "by computed value",
  708. "styleDeclaration": [
  709. "aspect-ratio",
  710. "aspectRatio"
  711. ],
  712. "syntax": "auto || <ratio>",
  713. "extended": []
  714. }
  715. ],
  716. [
  717. "backface-visibility",
  718. {
  719. "name": "backface-visibility",
  720. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-backface-visibility",
  721. "initial": "visible",
  722. "appliesTo": "transformable elements",
  723. "inherited": "no",
  724. "percentages": "N/A",
  725. "computedValue": "specified keyword",
  726. "canonicalOrder": "per grammar",
  727. "animationType": "discrete",
  728. "styleDeclaration": [
  729. "backface-visibility",
  730. "backfaceVisibility"
  731. ],
  732. "syntax": "visible | hidden",
  733. "extended": []
  734. }
  735. ],
  736. [
  737. "background",
  738. {
  739. "name": "background",
  740. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background",
  741. "initial": "see individual properties",
  742. "appliesTo": "all elements",
  743. "inherited": "no",
  744. "percentages": "see individual properties",
  745. "computedValue": "see individual properties",
  746. "animationType": "see individual properties",
  747. "canonicalOrder": "per grammar",
  748. "styleDeclaration": [
  749. "background"
  750. ],
  751. "syntax": "<bg-layer>#? , <final-bg-layer>",
  752. "extended": []
  753. }
  754. ],
  755. [
  756. "background-attachment",
  757. {
  758. "name": "background-attachment",
  759. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-attachment",
  760. "initial": "scroll",
  761. "appliesTo": "all elements",
  762. "inherited": "no",
  763. "percentages": "N/A",
  764. "computedValue": "list, each item the keyword as specified",
  765. "canonicalOrder": "per grammar",
  766. "animationType": "discrete",
  767. "styleDeclaration": [
  768. "background-attachment",
  769. "backgroundAttachment"
  770. ],
  771. "syntax": "<attachment>#",
  772. "extended": []
  773. }
  774. ],
  775. [
  776. "background-blend-mode",
  777. {
  778. "name": "background-blend-mode",
  779. "href": "https://drafts.fxtf.org/compositing-2/#propdef-background-blend-mode",
  780. "initial": "normal",
  781. "appliesTo": "All HTML elements",
  782. "inherited": "no",
  783. "percentages": "N/A",
  784. "computedValue": "as specified",
  785. "canonicalOrder": "per grammar",
  786. "media": "visual",
  787. "animatable": "no",
  788. "styleDeclaration": [
  789. "background-blend-mode",
  790. "backgroundBlendMode"
  791. ],
  792. "syntax": "<mix-blend-mode>#",
  793. "extended": []
  794. }
  795. ],
  796. [
  797. "background-clip",
  798. {
  799. "name": "background-clip",
  800. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-clip",
  801. "initial": "border-box",
  802. "appliesTo": "all elements",
  803. "inherited": "no",
  804. "percentages": "n/a",
  805. "computedValue": "as specified",
  806. "canonicalOrder": "per grammar",
  807. "animationType": "repeatable list",
  808. "styleDeclaration": [
  809. "background-clip",
  810. "backgroundClip"
  811. ],
  812. "syntax": "<bg-clip>#",
  813. "extended": []
  814. }
  815. ],
  816. [
  817. "background-color",
  818. {
  819. "name": "background-color",
  820. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-color",
  821. "initial": "transparent",
  822. "appliesTo": "all elements",
  823. "inherited": "no",
  824. "percentages": "N/A",
  825. "computedValue": "computed color",
  826. "canonicalOrder": "per grammar",
  827. "animationType": "by computed value",
  828. "styleDeclaration": [
  829. "background-color",
  830. "backgroundColor"
  831. ],
  832. "syntax": "<color>",
  833. "extended": []
  834. }
  835. ],
  836. [
  837. "background-image",
  838. {
  839. "name": "background-image",
  840. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-image",
  841. "initial": "none",
  842. "appliesTo": "all elements",
  843. "inherited": "no",
  844. "percentages": "N/A",
  845. "computedValue": "list, each item either an <image> or the keyword none",
  846. "canonicalOrder": "per grammar",
  847. "animationType": "discrete",
  848. "styleDeclaration": [
  849. "background-image",
  850. "backgroundImage"
  851. ],
  852. "syntax": "<bg-image>#",
  853. "extended": []
  854. }
  855. ],
  856. [
  857. "background-origin",
  858. {
  859. "name": "background-origin",
  860. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-origin",
  861. "initial": "padding-box",
  862. "appliesTo": "all elements",
  863. "inherited": "no",
  864. "percentages": "N/A",
  865. "computedValue": "list, each item a keyword as specified",
  866. "canonicalOrder": "per grammar",
  867. "animationType": "repeatable list",
  868. "styleDeclaration": [
  869. "background-origin",
  870. "backgroundOrigin"
  871. ],
  872. "syntax": "<visual-box>#",
  873. "extended": []
  874. }
  875. ],
  876. [
  877. "background-position",
  878. {
  879. "name": "background-position",
  880. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-position",
  881. "initial": "0% 0%",
  882. "appliesTo": "all elements",
  883. "inherited": "no",
  884. "percentages": "refer to size of background positioning area minus size of background image; see text",
  885. "computedValue": "a list, each item a pair of offsets (horizontal and vertical) from the top left origin, each offset given as a computed <length-percentage> value",
  886. "canonicalOrder": "per grammar",
  887. "animationType": "repeatable list",
  888. "styleDeclaration": [
  889. "background-position",
  890. "backgroundPosition"
  891. ],
  892. "syntax": "<bg-position>#",
  893. "extended": []
  894. }
  895. ],
  896. [
  897. "background-position-x",
  898. {
  899. "name": "background-position-x",
  900. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-position-x",
  901. "initial": "0%",
  902. "appliesTo": "all elements",
  903. "inherited": "no",
  904. "percentages": "refer to width of background positioning area minus width of background image",
  905. "computedValue": "A list, each item consisting of: an offset given as a computed <length-percentage> value, plus an origin keyword",
  906. "canonicalOrder": "per grammar",
  907. "animationType": "repeatable list",
  908. "logicalPropertyGroup": "background-position",
  909. "styleDeclaration": [
  910. "background-position-x",
  911. "backgroundPositionX"
  912. ],
  913. "syntax": "[ center | [ [ left | right | x-start | x-end ]? <length-percentage>? ]! ]#",
  914. "extended": []
  915. }
  916. ],
  917. [
  918. "background-position-y",
  919. {
  920. "name": "background-position-y",
  921. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-position-y",
  922. "initial": "0%",
  923. "appliesTo": "all elements",
  924. "inherited": "no",
  925. "percentages": "refer to height of background positioning area minus height of background image",
  926. "computedValue": "A list, each item consisting of: an offset given as a computed <length-percentage> value, plus an origin keyword",
  927. "canonicalOrder": "per grammar",
  928. "animationType": "repeatable list",
  929. "logicalPropertyGroup": "background-position",
  930. "styleDeclaration": [
  931. "background-position-y",
  932. "backgroundPositionY"
  933. ],
  934. "syntax": "[ center | [ [ top | bottom | y-start | y-end ]? <length-percentage>? ]! ]#",
  935. "extended": []
  936. }
  937. ],
  938. [
  939. "background-repeat",
  940. {
  941. "name": "background-repeat",
  942. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat",
  943. "initial": "repeat",
  944. "appliesTo": "all elements",
  945. "inherited": "no",
  946. "percentages": "N/A",
  947. "computedValue": "list, each item a pair of keywords, one per dimension",
  948. "canonicalOrder": "per grammar",
  949. "animationType": "discrete",
  950. "styleDeclaration": [
  951. "background-repeat",
  952. "backgroundRepeat"
  953. ],
  954. "syntax": "<repeat-style>#",
  955. "extended": []
  956. }
  957. ],
  958. [
  959. "background-repeat-x",
  960. {
  961. "name": "background-repeat-x",
  962. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat-x",
  963. "initial": "repeat",
  964. "appliesTo": "all elements",
  965. "inherited": "no",
  966. "percentages": "N/A",
  967. "computedValue": "as specified",
  968. "canonicalOrder": "per grammar",
  969. "animationType": "discrete",
  970. "logicalPropertyGroup": "background-repeat",
  971. "styleDeclaration": [
  972. "background-repeat-x",
  973. "backgroundRepeatX"
  974. ],
  975. "syntax": "<repetition>#",
  976. "extended": []
  977. }
  978. ],
  979. [
  980. "background-repeat-y",
  981. {
  982. "name": "background-repeat-y",
  983. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-repeat-y",
  984. "initial": "repeat",
  985. "appliesTo": "all elements",
  986. "inherited": "no",
  987. "percentages": "N/A",
  988. "computedValue": "as specified",
  989. "canonicalOrder": "per grammar",
  990. "animationType": "discrete",
  991. "logicalPropertyGroup": "background-repeat",
  992. "styleDeclaration": [
  993. "background-repeat-y",
  994. "backgroundRepeatY"
  995. ],
  996. "syntax": "<repetition>#",
  997. "extended": []
  998. }
  999. ],
  1000. [
  1001. "background-size",
  1002. {
  1003. "name": "background-size",
  1004. "href": "https://drafts.csswg.org/css-backgrounds-4/#propdef-background-size",
  1005. "initial": "auto",
  1006. "appliesTo": "all elements",
  1007. "inherited": "no",
  1008. "percentages": "see text",
  1009. "computedValue": "list, each item a pair of sizes (one per axis) each represented as either a keyword or a computed <length-percentage> value",
  1010. "canonicalOrder": "per grammar",
  1011. "animationType": "repeatable list",
  1012. "styleDeclaration": [
  1013. "background-size",
  1014. "backgroundSize"
  1015. ],
  1016. "syntax": "<bg-size>#",
  1017. "extended": []
  1018. }
  1019. ],
  1020. [
  1021. "baseline-shift",
  1022. {
  1023. "name": "baseline-shift",
  1024. "href": "https://drafts.csswg.org/css-inline-3/#propdef-baseline-shift",
  1025. "initial": "0",
  1026. "appliesTo": "inline-level boxes and SVG text content elements",
  1027. "inherited": "no",
  1028. "percentages": "refer to the used value of line-height",
  1029. "computedValue": "the specified keyword or a computed <length-percentage> value",
  1030. "canonicalOrder": "per grammar",
  1031. "animationType": "by computed value type",
  1032. "styleDeclaration": [
  1033. "baseline-shift",
  1034. "baselineShift"
  1035. ],
  1036. "syntax": "<length-percentage> | sub | super | top | center | bottom",
  1037. "extended": []
  1038. }
  1039. ],
  1040. [
  1041. "baseline-source",
  1042. {
  1043. "name": "baseline-source",
  1044. "href": "https://drafts.csswg.org/css-inline-3/#propdef-baseline-source",
  1045. "initial": "auto",
  1046. "appliesTo": "inline-level boxes",
  1047. "inherited": "no",
  1048. "percentages": "N/A",
  1049. "computedValue": "specified keyword",
  1050. "canonicalOrder": "per grammar",
  1051. "animationType": "discrete",
  1052. "styleDeclaration": [
  1053. "baseline-source",
  1054. "baselineSource"
  1055. ],
  1056. "syntax": "auto | first | last",
  1057. "extended": []
  1058. }
  1059. ],
  1060. [
  1061. "block-ellipsis",
  1062. {
  1063. "name": "block-ellipsis",
  1064. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-block-ellipsis",
  1065. "initial": "no-ellipsis",
  1066. "appliesTo": "block containers",
  1067. "inherited": "yes",
  1068. "percentages": "N/A",
  1069. "computedValue": "specified value",
  1070. "canonicalOrder": "per grammar",
  1071. "animationType": "discrete",
  1072. "styleDeclaration": [
  1073. "block-ellipsis",
  1074. "blockEllipsis"
  1075. ],
  1076. "syntax": "no-ellipsis | auto | <string>",
  1077. "extended": []
  1078. }
  1079. ],
  1080. [
  1081. "block-size",
  1082. {
  1083. "name": "block-size",
  1084. "href": "https://drafts.csswg.org/css-logical-1/#propdef-block-size",
  1085. "initial": "auto",
  1086. "appliesTo": "Same as height and width",
  1087. "inherited": "no",
  1088. "percentages": "As for the corresponding physical property",
  1089. "computedValue": "Same as height, width",
  1090. "canonicalOrder": "per grammar",
  1091. "animationType": "by computed value type",
  1092. "logicalPropertyGroup": "size",
  1093. "styleDeclaration": [
  1094. "block-size",
  1095. "blockSize"
  1096. ],
  1097. "syntax": "<'width'>",
  1098. "extended": []
  1099. }
  1100. ],
  1101. [
  1102. "block-step",
  1103. {
  1104. "name": "block-step",
  1105. "href": "https://drafts.csswg.org/css-rhythm-1/#propdef-block-step",
  1106. "initial": "see individual properties",
  1107. "appliesTo": "block-level boxes",
  1108. "inherited": "no",
  1109. "percentages": "N/A",
  1110. "computedValue": "see individual properties",
  1111. "animationType": "see individual properties",
  1112. "canonicalOrder": "per grammar",
  1113. "styleDeclaration": [
  1114. "block-step",
  1115. "blockStep"
  1116. ],
  1117. "syntax": "<'block-step-size'> || <'block-step-insert'> || <'block-step-align'> || <'block-step-round'>",
  1118. "extended": []
  1119. }
  1120. ],
  1121. [
  1122. "block-step-align",
  1123. {
  1124. "name": "block-step-align",
  1125. "href": "https://drafts.csswg.org/css-rhythm-1/#propdef-block-step-align",
  1126. "initial": "auto",
  1127. "appliesTo": "block-level boxes",
  1128. "inherited": "no",
  1129. "percentages": "N/A",
  1130. "computedValue": "specified keyword",
  1131. "canonicalOrder": "per grammar",
  1132. "animationType": "discrete",
  1133. "styleDeclaration": [
  1134. "block-step-align",
  1135. "blockStepAlign"
  1136. ],
  1137. "syntax": "auto | center | start | end",
  1138. "extended": []
  1139. }
  1140. ],
  1141. [
  1142. "block-step-insert",
  1143. {
  1144. "name": "block-step-insert",
  1145. "href": "https://drafts.csswg.org/css-rhythm-1/#propdef-block-step-insert",
  1146. "initial": "margin-box",
  1147. "appliesTo": "block-level boxes",
  1148. "inherited": "no",
  1149. "percentages": "N/A",
  1150. "computedValue": "specified keyword",
  1151. "canonicalOrder": "per grammar",
  1152. "animationType": "discrete",
  1153. "styleDeclaration": [
  1154. "block-step-insert",
  1155. "blockStepInsert"
  1156. ],
  1157. "syntax": "margin-box | padding-box | content-box",
  1158. "extended": []
  1159. }
  1160. ],
  1161. [
  1162. "block-step-round",
  1163. {
  1164. "name": "block-step-round",
  1165. "href": "https://drafts.csswg.org/css-rhythm-1/#propdef-block-step-round",
  1166. "initial": "up",
  1167. "appliesTo": "block-level boxes",
  1168. "inherited": "no",
  1169. "percentages": "N/A",
  1170. "computedValue": "specified keyword",
  1171. "canonicalOrder": "per grammar",
  1172. "animationType": "discrete",
  1173. "styleDeclaration": [
  1174. "block-step-round",
  1175. "blockStepRound"
  1176. ],
  1177. "syntax": "up | down | nearest",
  1178. "extended": []
  1179. }
  1180. ],
  1181. [
  1182. "block-step-size",
  1183. {
  1184. "name": "block-step-size",
  1185. "href": "https://drafts.csswg.org/css-rhythm-1/#propdef-block-step-size",
  1186. "initial": "none",
  1187. "appliesTo": "block-level boxes",
  1188. "inherited": "no",
  1189. "percentages": "N/A",
  1190. "computedValue": "specified keyword or absolute length",
  1191. "canonicalOrder": "per grammar",
  1192. "animationType": "by computed value type",
  1193. "styleDeclaration": [
  1194. "block-step-size",
  1195. "blockStepSize"
  1196. ],
  1197. "syntax": "none | <length [0,∞]>",
  1198. "extended": []
  1199. }
  1200. ],
  1201. [
  1202. "bookmark-label",
  1203. {
  1204. "name": "bookmark-label",
  1205. "href": "https://drafts.csswg.org/css-content-3/#propdef-bookmark-label",
  1206. "initial": "content(text)",
  1207. "appliesTo": "all elements",
  1208. "inherited": "no",
  1209. "percentages": "N/A",
  1210. "computedValue": "specified value",
  1211. "canonicalOrder": "per grammar",
  1212. "animationType": "discrete",
  1213. "styleDeclaration": [
  1214. "bookmark-label",
  1215. "bookmarkLabel"
  1216. ],
  1217. "syntax": "<content-list>",
  1218. "extended": []
  1219. }
  1220. ],
  1221. [
  1222. "bookmark-level",
  1223. {
  1224. "name": "bookmark-level",
  1225. "href": "https://drafts.csswg.org/css-content-3/#propdef-bookmark-level",
  1226. "initial": "none",
  1227. "appliesTo": "all elements",
  1228. "inherited": "no",
  1229. "percentages": "N/A",
  1230. "computedValue": "the keyword none or the specified integer",
  1231. "canonicalOrder": "per grammar",
  1232. "animationType": "by computed value type",
  1233. "styleDeclaration": [
  1234. "bookmark-level",
  1235. "bookmarkLevel"
  1236. ],
  1237. "syntax": "none | <integer [1,∞]>",
  1238. "extended": []
  1239. }
  1240. ],
  1241. [
  1242. "bookmark-state",
  1243. {
  1244. "name": "bookmark-state",
  1245. "href": "https://drafts.csswg.org/css-content-3/#propdef-bookmark-state",
  1246. "initial": "open",
  1247. "appliesTo": "block-level elements",
  1248. "inherited": "no",
  1249. "percentages": "N/A",
  1250. "computedValue": "specified keyword",
  1251. "canonicalOrder": "per grammar",
  1252. "animationType": "discrete",
  1253. "styleDeclaration": [
  1254. "bookmark-state",
  1255. "bookmarkState"
  1256. ],
  1257. "syntax": "open | closed",
  1258. "extended": []
  1259. }
  1260. ],
  1261. [
  1262. "border",
  1263. {
  1264. "name": "border",
  1265. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border",
  1266. "initial": "see individual properties",
  1267. "appliesTo": "see individual properties",
  1268. "inherited": "see individual properties",
  1269. "percentages": "see individual properties",
  1270. "computedValue": "see individual properties",
  1271. "animationType": "see individual properties",
  1272. "canonicalOrder": "per grammar",
  1273. "styleDeclaration": [
  1274. "border"
  1275. ],
  1276. "syntax": "<line-width> || <line-style> || <color>",
  1277. "extended": []
  1278. }
  1279. ],
  1280. [
  1281. "border-block",
  1282. {
  1283. "name": "border-block",
  1284. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block",
  1285. "initial": "see individual properties",
  1286. "appliesTo": "see individual properties",
  1287. "inherited": "see individual properties",
  1288. "percentages": "see individual properties",
  1289. "computedValue": "see individual properties",
  1290. "animationType": "see individual properties",
  1291. "canonicalOrder": "per grammar",
  1292. "styleDeclaration": [
  1293. "border-block",
  1294. "borderBlock"
  1295. ],
  1296. "syntax": "<'border-block-start'>",
  1297. "extended": []
  1298. }
  1299. ],
  1300. [
  1301. "border-block-color",
  1302. {
  1303. "name": "border-block-color",
  1304. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-color",
  1305. "initial": "see individual properties",
  1306. "appliesTo": "see individual properties",
  1307. "inherited": "see individual properties",
  1308. "percentages": "see individual properties",
  1309. "computedValue": "see individual properties",
  1310. "animationType": "see individual properties",
  1311. "canonicalOrder": "per grammar",
  1312. "styleDeclaration": [
  1313. "border-block-color",
  1314. "borderBlockColor"
  1315. ],
  1316. "syntax": "<'border-top-color'>{1,2}",
  1317. "extended": []
  1318. }
  1319. ],
  1320. [
  1321. "border-block-end",
  1322. {
  1323. "name": "border-block-end",
  1324. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-end",
  1325. "initial": "See individual properties",
  1326. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1327. "inherited": "no",
  1328. "percentages": "N/A",
  1329. "computedValue": "see individual properties",
  1330. "animationType": "see individual properties",
  1331. "canonicalOrder": "per grammar",
  1332. "styleDeclaration": [
  1333. "border-block-end",
  1334. "borderBlockEnd"
  1335. ],
  1336. "syntax": "<line-width> || <line-style> || <color>",
  1337. "extended": []
  1338. }
  1339. ],
  1340. [
  1341. "border-block-end-color",
  1342. {
  1343. "name": "border-block-end-color",
  1344. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-color",
  1345. "initial": "currentcolor",
  1346. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1347. "inherited": "no",
  1348. "percentages": "N/A",
  1349. "computedValue": "the computed color and/or a one-dimensional image function",
  1350. "canonicalOrder": "per grammar",
  1351. "animationType": "see prose",
  1352. "logicalPropertyGroup": "border-color",
  1353. "styleDeclaration": [
  1354. "border-block-end-color",
  1355. "borderBlockEndColor"
  1356. ],
  1357. "syntax": "<color> | <image-1D>",
  1358. "extended": []
  1359. }
  1360. ],
  1361. [
  1362. "border-block-end-radius",
  1363. {
  1364. "name": "border-block-end-radius",
  1365. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-radius",
  1366. "initial": "0",
  1367. "appliesTo": "all elements (but see prose)",
  1368. "inherited": "no",
  1369. "percentages": "Refer to corresponding dimension of the border box.",
  1370. "computedValue": "see individual properties",
  1371. "animationType": "see individual properties",
  1372. "canonicalOrder": "per grammar",
  1373. "styleDeclaration": [
  1374. "border-block-end-radius",
  1375. "borderBlockEndRadius"
  1376. ],
  1377. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  1378. "extended": []
  1379. }
  1380. ],
  1381. [
  1382. "border-block-end-style",
  1383. {
  1384. "name": "border-block-end-style",
  1385. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-style",
  1386. "initial": "none",
  1387. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1388. "inherited": "no",
  1389. "percentages": "N/A",
  1390. "computedValue": "specified keyword",
  1391. "canonicalOrder": "per grammar",
  1392. "animationType": "discrete",
  1393. "logicalPropertyGroup": "border-style",
  1394. "styleDeclaration": [
  1395. "border-block-end-style",
  1396. "borderBlockEndStyle"
  1397. ],
  1398. "syntax": "<line-style>",
  1399. "extended": []
  1400. }
  1401. ],
  1402. [
  1403. "border-block-end-width",
  1404. {
  1405. "name": "border-block-end-width",
  1406. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-end-width",
  1407. "initial": "medium",
  1408. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1409. "inherited": "no",
  1410. "percentages": "N/A",
  1411. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  1412. "canonicalOrder": "per grammar",
  1413. "animationType": "by computed value",
  1414. "logicalPropertyGroup": "border-width",
  1415. "styleDeclaration": [
  1416. "border-block-end-width",
  1417. "borderBlockEndWidth"
  1418. ],
  1419. "syntax": "<line-width>",
  1420. "extended": []
  1421. }
  1422. ],
  1423. [
  1424. "border-block-start",
  1425. {
  1426. "name": "border-block-start",
  1427. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-start",
  1428. "initial": "See individual properties",
  1429. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1430. "inherited": "no",
  1431. "percentages": "N/A",
  1432. "computedValue": "see individual properties",
  1433. "animationType": "see individual properties",
  1434. "canonicalOrder": "per grammar",
  1435. "styleDeclaration": [
  1436. "border-block-start",
  1437. "borderBlockStart"
  1438. ],
  1439. "syntax": "<line-width> || <line-style> || <color>",
  1440. "extended": []
  1441. }
  1442. ],
  1443. [
  1444. "border-block-start-color",
  1445. {
  1446. "name": "border-block-start-color",
  1447. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-color",
  1448. "initial": "currentcolor",
  1449. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1450. "inherited": "no",
  1451. "percentages": "N/A",
  1452. "computedValue": "the computed color and/or a one-dimensional image function",
  1453. "canonicalOrder": "per grammar",
  1454. "animationType": "see prose",
  1455. "logicalPropertyGroup": "border-color",
  1456. "styleDeclaration": [
  1457. "border-block-start-color",
  1458. "borderBlockStartColor"
  1459. ],
  1460. "syntax": "<color> | <image-1D>",
  1461. "extended": []
  1462. }
  1463. ],
  1464. [
  1465. "border-block-start-radius",
  1466. {
  1467. "name": "border-block-start-radius",
  1468. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-radius",
  1469. "initial": "0",
  1470. "appliesTo": "all elements (but see prose)",
  1471. "inherited": "no",
  1472. "percentages": "Refer to corresponding dimension of the border box.",
  1473. "computedValue": "see individual properties",
  1474. "animationType": "see individual properties",
  1475. "canonicalOrder": "per grammar",
  1476. "styleDeclaration": [
  1477. "border-block-start-radius",
  1478. "borderBlockStartRadius"
  1479. ],
  1480. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  1481. "extended": []
  1482. }
  1483. ],
  1484. [
  1485. "border-block-start-style",
  1486. {
  1487. "name": "border-block-start-style",
  1488. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-style",
  1489. "initial": "none",
  1490. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1491. "inherited": "no",
  1492. "percentages": "N/A",
  1493. "computedValue": "specified keyword",
  1494. "canonicalOrder": "per grammar",
  1495. "animationType": "discrete",
  1496. "logicalPropertyGroup": "border-style",
  1497. "styleDeclaration": [
  1498. "border-block-start-style",
  1499. "borderBlockStartStyle"
  1500. ],
  1501. "syntax": "<line-style>",
  1502. "extended": []
  1503. }
  1504. ],
  1505. [
  1506. "border-block-start-width",
  1507. {
  1508. "name": "border-block-start-width",
  1509. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-start-width",
  1510. "initial": "medium",
  1511. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1512. "inherited": "no",
  1513. "percentages": "N/A",
  1514. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  1515. "canonicalOrder": "per grammar",
  1516. "animationType": "by computed value",
  1517. "logicalPropertyGroup": "border-width",
  1518. "styleDeclaration": [
  1519. "border-block-start-width",
  1520. "borderBlockStartWidth"
  1521. ],
  1522. "syntax": "<line-width>",
  1523. "extended": []
  1524. }
  1525. ],
  1526. [
  1527. "border-block-style",
  1528. {
  1529. "name": "border-block-style",
  1530. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-style",
  1531. "initial": "see individual properties",
  1532. "appliesTo": "see individual properties",
  1533. "inherited": "see individual properties",
  1534. "percentages": "see individual properties",
  1535. "computedValue": "see individual properties",
  1536. "animationType": "see individual properties",
  1537. "canonicalOrder": "per grammar",
  1538. "styleDeclaration": [
  1539. "border-block-style",
  1540. "borderBlockStyle"
  1541. ],
  1542. "syntax": "<'border-top-style'>{1,2}",
  1543. "extended": []
  1544. }
  1545. ],
  1546. [
  1547. "border-block-width",
  1548. {
  1549. "name": "border-block-width",
  1550. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-block-width",
  1551. "initial": "see individual properties",
  1552. "appliesTo": "see individual properties",
  1553. "inherited": "see individual properties",
  1554. "percentages": "see individual properties",
  1555. "computedValue": "see individual properties",
  1556. "animationType": "see individual properties",
  1557. "canonicalOrder": "per grammar",
  1558. "styleDeclaration": [
  1559. "border-block-width",
  1560. "borderBlockWidth"
  1561. ],
  1562. "syntax": "<'border-top-width'>{1,2}",
  1563. "extended": []
  1564. }
  1565. ],
  1566. [
  1567. "border-bottom",
  1568. {
  1569. "name": "border-bottom",
  1570. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom",
  1571. "initial": "See individual properties",
  1572. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1573. "inherited": "no",
  1574. "percentages": "N/A",
  1575. "computedValue": "see individual properties",
  1576. "animationType": "see individual properties",
  1577. "canonicalOrder": "per grammar",
  1578. "styleDeclaration": [
  1579. "border-bottom",
  1580. "borderBottom"
  1581. ],
  1582. "syntax": "<line-width> || <line-style> || <color>",
  1583. "extended": []
  1584. }
  1585. ],
  1586. [
  1587. "border-bottom-color",
  1588. {
  1589. "name": "border-bottom-color",
  1590. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-color",
  1591. "initial": "currentcolor",
  1592. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1593. "inherited": "no",
  1594. "percentages": "N/A",
  1595. "computedValue": "the computed color and/or a one-dimensional image function",
  1596. "canonicalOrder": "per grammar",
  1597. "animationType": "see prose",
  1598. "logicalPropertyGroup": "border-color",
  1599. "styleDeclaration": [
  1600. "border-bottom-color",
  1601. "borderBottomColor"
  1602. ],
  1603. "syntax": "<color> | <image-1D>",
  1604. "extended": []
  1605. }
  1606. ],
  1607. [
  1608. "border-bottom-left-radius",
  1609. {
  1610. "name": "border-bottom-left-radius",
  1611. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-left-radius",
  1612. "initial": "0",
  1613. "appliesTo": "all elements (but see prose)",
  1614. "inherited": "no",
  1615. "percentages": "Refer to corresponding dimension of the border box.",
  1616. "computedValue": "pair of computed <length-percentage> values",
  1617. "canonicalOrder": "per grammar",
  1618. "animationType": "by computed value",
  1619. "logicalPropertyGroup": "border-radius",
  1620. "styleDeclaration": [
  1621. "border-bottom-left-radius",
  1622. "borderBottomLeftRadius"
  1623. ],
  1624. "syntax": "<border-radius>",
  1625. "extended": []
  1626. }
  1627. ],
  1628. [
  1629. "border-bottom-radius",
  1630. {
  1631. "name": "border-bottom-radius",
  1632. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-radius",
  1633. "initial": "0",
  1634. "appliesTo": "all elements (but see prose)",
  1635. "inherited": "no",
  1636. "percentages": "Refer to corresponding dimension of the border box.",
  1637. "computedValue": "see individual properties",
  1638. "animationType": "see individual properties",
  1639. "canonicalOrder": "per grammar",
  1640. "styleDeclaration": [
  1641. "border-bottom-radius",
  1642. "borderBottomRadius"
  1643. ],
  1644. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  1645. "extended": []
  1646. }
  1647. ],
  1648. [
  1649. "border-bottom-right-radius",
  1650. {
  1651. "name": "border-bottom-right-radius",
  1652. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-right-radius",
  1653. "initial": "0",
  1654. "appliesTo": "all elements (but see prose)",
  1655. "inherited": "no",
  1656. "percentages": "Refer to corresponding dimension of the border box.",
  1657. "computedValue": "pair of computed <length-percentage> values",
  1658. "canonicalOrder": "per grammar",
  1659. "animationType": "by computed value",
  1660. "logicalPropertyGroup": "border-radius",
  1661. "styleDeclaration": [
  1662. "border-bottom-right-radius",
  1663. "borderBottomRightRadius"
  1664. ],
  1665. "syntax": "<border-radius>",
  1666. "extended": []
  1667. }
  1668. ],
  1669. [
  1670. "border-bottom-style",
  1671. {
  1672. "name": "border-bottom-style",
  1673. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-style",
  1674. "initial": "none",
  1675. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1676. "inherited": "no",
  1677. "percentages": "N/A",
  1678. "computedValue": "specified keyword",
  1679. "canonicalOrder": "per grammar",
  1680. "animationType": "discrete",
  1681. "logicalPropertyGroup": "border-style",
  1682. "styleDeclaration": [
  1683. "border-bottom-style",
  1684. "borderBottomStyle"
  1685. ],
  1686. "syntax": "<line-style>",
  1687. "extended": []
  1688. }
  1689. ],
  1690. [
  1691. "border-bottom-width",
  1692. {
  1693. "name": "border-bottom-width",
  1694. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-bottom-width",
  1695. "initial": "medium",
  1696. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  1697. "inherited": "no",
  1698. "percentages": "N/A",
  1699. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  1700. "canonicalOrder": "per grammar",
  1701. "animationType": "by computed value",
  1702. "logicalPropertyGroup": "border-width",
  1703. "styleDeclaration": [
  1704. "border-bottom-width",
  1705. "borderBottomWidth"
  1706. ],
  1707. "syntax": "<line-width>",
  1708. "extended": []
  1709. }
  1710. ],
  1711. [
  1712. "border-boundary",
  1713. {
  1714. "name": "border-boundary",
  1715. "href": "https://drafts.csswg.org/css-round-display-1/#propdef-border-boundary",
  1716. "initial": "none",
  1717. "appliesTo": "all elements",
  1718. "inherited": "yes",
  1719. "percentages": "n/a",
  1720. "computedValue": "specified keyword",
  1721. "canonicalOrder": "per grammar",
  1722. "animationType": "discrete",
  1723. "styleDeclaration": [
  1724. "border-boundary",
  1725. "borderBoundary"
  1726. ],
  1727. "syntax": "none | parent | display",
  1728. "extended": []
  1729. }
  1730. ],
  1731. [
  1732. "border-clip",
  1733. {
  1734. "name": "border-clip",
  1735. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-clip",
  1736. "initial": "see individual properties",
  1737. "appliesTo": "see individual properties",
  1738. "inherited": "see individual properties",
  1739. "percentages": "see individual properties",
  1740. "computedValue": "see individual properties",
  1741. "animationType": "see individual properties",
  1742. "canonicalOrder": "per grammar",
  1743. "styleDeclaration": [
  1744. "border-clip",
  1745. "borderClip"
  1746. ],
  1747. "syntax": "<'border-top-clip'>",
  1748. "extended": []
  1749. }
  1750. ],
  1751. [
  1752. "border-collapse",
  1753. {
  1754. "name": "border-collapse",
  1755. "href": "https://drafts.csswg.org/css-tables-3/#propdef-border-collapse",
  1756. "initial": "separate",
  1757. "appliesTo": "table grid boxes",
  1758. "inherited": "yes",
  1759. "percentages": "n/a",
  1760. "computedValue": "specified keyword",
  1761. "canonicalOrder": "per grammar",
  1762. "animationType": "discrete",
  1763. "styleDeclaration": [
  1764. "border-collapse",
  1765. "borderCollapse"
  1766. ],
  1767. "syntax": "separate | collapse",
  1768. "extended": []
  1769. }
  1770. ],
  1771. [
  1772. "border-color",
  1773. {
  1774. "name": "border-color",
  1775. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-color",
  1776. "initial": "see individual properties",
  1777. "appliesTo": "see individual properties",
  1778. "inherited": "see individual properties",
  1779. "percentages": "see individual properties",
  1780. "computedValue": "see individual properties",
  1781. "animationType": "see individual properties",
  1782. "canonicalOrder": "per grammar",
  1783. "styleDeclaration": [
  1784. "border-color",
  1785. "borderColor"
  1786. ],
  1787. "syntax": "[ <color> | <image-1D> ]{1,4}",
  1788. "extended": []
  1789. }
  1790. ],
  1791. [
  1792. "border-end-end-radius",
  1793. {
  1794. "name": "border-end-end-radius",
  1795. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-end-end-radius",
  1796. "initial": "0",
  1797. "appliesTo": "all elements (but see prose)",
  1798. "inherited": "no",
  1799. "percentages": "Refer to corresponding dimension of the border box.",
  1800. "computedValue": "pair of computed <length-percentage> values",
  1801. "canonicalOrder": "per grammar",
  1802. "animationType": "by computed value",
  1803. "logicalPropertyGroup": "border-radius",
  1804. "styleDeclaration": [
  1805. "border-end-end-radius",
  1806. "borderEndEndRadius"
  1807. ],
  1808. "syntax": "<border-radius>",
  1809. "extended": []
  1810. }
  1811. ],
  1812. [
  1813. "border-end-start-radius",
  1814. {
  1815. "name": "border-end-start-radius",
  1816. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-end-start-radius",
  1817. "initial": "0",
  1818. "appliesTo": "all elements (but see prose)",
  1819. "inherited": "no",
  1820. "percentages": "Refer to corresponding dimension of the border box.",
  1821. "computedValue": "pair of computed <length-percentage> values",
  1822. "canonicalOrder": "per grammar",
  1823. "animationType": "by computed value",
  1824. "logicalPropertyGroup": "border-radius",
  1825. "styleDeclaration": [
  1826. "border-end-start-radius",
  1827. "borderEndStartRadius"
  1828. ],
  1829. "syntax": "<border-radius>",
  1830. "extended": []
  1831. }
  1832. ],
  1833. [
  1834. "border-image",
  1835. {
  1836. "name": "border-image",
  1837. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-image",
  1838. "initial": "See individual properties",
  1839. "appliesTo": "See individual properties",
  1840. "inherited": "no",
  1841. "percentages": "N/A",
  1842. "computedValue": "See individual properties",
  1843. "canonicalOrder": "per grammar",
  1844. "animationType": "See individual properties",
  1845. "styleDeclaration": [
  1846. "border-image",
  1847. "borderImage"
  1848. ],
  1849. "syntax": "<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>",
  1850. "extended": []
  1851. }
  1852. ],
  1853. [
  1854. "border-image-outset",
  1855. {
  1856. "name": "border-image-outset",
  1857. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-image-outset",
  1858. "initial": "0",
  1859. "appliesTo": "All elements, except internal table elements when border-collapse is collapse",
  1860. "inherited": "no",
  1861. "percentages": "N/A",
  1862. "computedValue": "four values, each a number or absolute length",
  1863. "canonicalOrder": "per grammar",
  1864. "animationType": "by computed value",
  1865. "styleDeclaration": [
  1866. "border-image-outset",
  1867. "borderImageOutset"
  1868. ],
  1869. "syntax": "[ <length [0,∞]> | <number [0,∞]> ]{1,4}",
  1870. "extended": []
  1871. }
  1872. ],
  1873. [
  1874. "border-image-repeat",
  1875. {
  1876. "name": "border-image-repeat",
  1877. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-image-repeat",
  1878. "initial": "stretch",
  1879. "appliesTo": "All elements, except internal table elements when border-collapse is collapse",
  1880. "inherited": "no",
  1881. "percentages": "N/A",
  1882. "computedValue": "two keywords, one per axis",
  1883. "canonicalOrder": "per grammar",
  1884. "animationType": "discrete",
  1885. "styleDeclaration": [
  1886. "border-image-repeat",
  1887. "borderImageRepeat"
  1888. ],
  1889. "syntax": "[ stretch | repeat | round | space ]{1,2}",
  1890. "extended": []
  1891. }
  1892. ],
  1893. [
  1894. "border-image-slice",
  1895. {
  1896. "name": "border-image-slice",
  1897. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-image-slice",
  1898. "initial": "100%",
  1899. "appliesTo": "All elements, except internal table elements when border-collapse is collapse",
  1900. "inherited": "no",
  1901. "percentages": "refer to size of the border image",
  1902. "computedValue": "four values, each either a number or percentage; plus a fill keyword if specified",
  1903. "canonicalOrder": "per grammar",
  1904. "animationType": "by computed value",
  1905. "styleDeclaration": [
  1906. "border-image-slice",
  1907. "borderImageSlice"
  1908. ],
  1909. "syntax": "[<number [0,∞]> | <percentage [0,∞]>]{1,4} && fill?",
  1910. "extended": []
  1911. }
  1912. ],
  1913. [
  1914. "border-image-source",
  1915. {
  1916. "name": "border-image-source",
  1917. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-image-source",
  1918. "initial": "none",
  1919. "appliesTo": "All elements, except internal table elements when border-collapse is collapse",
  1920. "inherited": "no",
  1921. "percentages": "N/A",
  1922. "computedValue": "the keyword none or the computed <image>",
  1923. "canonicalOrder": "per grammar",
  1924. "animationType": "discrete",
  1925. "styleDeclaration": [
  1926. "border-image-source",
  1927. "borderImageSource"
  1928. ],
  1929. "syntax": "none | <image>",
  1930. "extended": []
  1931. }
  1932. ],
  1933. [
  1934. "border-image-width",
  1935. {
  1936. "name": "border-image-width",
  1937. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-image-width",
  1938. "initial": "1",
  1939. "appliesTo": "All elements, except internal table elements when border-collapse is collapse",
  1940. "inherited": "no",
  1941. "percentages": "Relative to width/height of the border image area",
  1942. "computedValue": "four values, each either a number, the keyword auto, or a computed <length-percentage> value",
  1943. "canonicalOrder": "per grammar",
  1944. "animationType": "by computed value",
  1945. "styleDeclaration": [
  1946. "border-image-width",
  1947. "borderImageWidth"
  1948. ],
  1949. "syntax": "[ <length-percentage [0,∞]> | <number [0,∞]> | auto ]{1,4}",
  1950. "extended": []
  1951. }
  1952. ],
  1953. [
  1954. "border-inline",
  1955. {
  1956. "name": "border-inline",
  1957. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline",
  1958. "initial": "see individual properties",
  1959. "appliesTo": "see individual properties",
  1960. "inherited": "see individual properties",
  1961. "percentages": "see individual properties",
  1962. "computedValue": "see individual properties",
  1963. "animationType": "see individual properties",
  1964. "canonicalOrder": "per grammar",
  1965. "styleDeclaration": [
  1966. "border-inline",
  1967. "borderInline"
  1968. ],
  1969. "syntax": "<'border-block-start'>",
  1970. "extended": []
  1971. }
  1972. ],
  1973. [
  1974. "border-inline-color",
  1975. {
  1976. "name": "border-inline-color",
  1977. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-color",
  1978. "initial": "see individual properties",
  1979. "appliesTo": "see individual properties",
  1980. "inherited": "see individual properties",
  1981. "percentages": "see individual properties",
  1982. "computedValue": "see individual properties",
  1983. "animationType": "see individual properties",
  1984. "canonicalOrder": "per grammar",
  1985. "styleDeclaration": [
  1986. "border-inline-color",
  1987. "borderInlineColor"
  1988. ],
  1989. "syntax": "<'border-top-color'>{1,2}",
  1990. "extended": []
  1991. }
  1992. ],
  1993. [
  1994. "border-inline-end",
  1995. {
  1996. "name": "border-inline-end",
  1997. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end",
  1998. "initial": "See individual properties",
  1999. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2000. "inherited": "no",
  2001. "percentages": "N/A",
  2002. "computedValue": "see individual properties",
  2003. "animationType": "see individual properties",
  2004. "canonicalOrder": "per grammar",
  2005. "styleDeclaration": [
  2006. "border-inline-end",
  2007. "borderInlineEnd"
  2008. ],
  2009. "syntax": "<line-width> || <line-style> || <color>",
  2010. "extended": []
  2011. }
  2012. ],
  2013. [
  2014. "border-inline-end-color",
  2015. {
  2016. "name": "border-inline-end-color",
  2017. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-color",
  2018. "initial": "currentcolor",
  2019. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2020. "inherited": "no",
  2021. "percentages": "N/A",
  2022. "computedValue": "the computed color and/or a one-dimensional image function",
  2023. "canonicalOrder": "per grammar",
  2024. "animationType": "see prose",
  2025. "logicalPropertyGroup": "border-color",
  2026. "styleDeclaration": [
  2027. "border-inline-end-color",
  2028. "borderInlineEndColor"
  2029. ],
  2030. "syntax": "<color> | <image-1D>",
  2031. "extended": []
  2032. }
  2033. ],
  2034. [
  2035. "border-inline-end-radius",
  2036. {
  2037. "name": "border-inline-end-radius",
  2038. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-radius",
  2039. "initial": "0",
  2040. "appliesTo": "all elements (but see prose)",
  2041. "inherited": "no",
  2042. "percentages": "Refer to corresponding dimension of the border box.",
  2043. "computedValue": "see individual properties",
  2044. "animationType": "see individual properties",
  2045. "canonicalOrder": "per grammar",
  2046. "styleDeclaration": [
  2047. "border-inline-end-radius",
  2048. "borderInlineEndRadius"
  2049. ],
  2050. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  2051. "extended": []
  2052. }
  2053. ],
  2054. [
  2055. "border-inline-end-style",
  2056. {
  2057. "name": "border-inline-end-style",
  2058. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-style",
  2059. "initial": "none",
  2060. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2061. "inherited": "no",
  2062. "percentages": "N/A",
  2063. "computedValue": "specified keyword",
  2064. "canonicalOrder": "per grammar",
  2065. "animationType": "discrete",
  2066. "logicalPropertyGroup": "border-style",
  2067. "styleDeclaration": [
  2068. "border-inline-end-style",
  2069. "borderInlineEndStyle"
  2070. ],
  2071. "syntax": "<line-style>",
  2072. "extended": []
  2073. }
  2074. ],
  2075. [
  2076. "border-inline-end-width",
  2077. {
  2078. "name": "border-inline-end-width",
  2079. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-end-width",
  2080. "initial": "medium",
  2081. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2082. "inherited": "no",
  2083. "percentages": "N/A",
  2084. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  2085. "canonicalOrder": "per grammar",
  2086. "animationType": "by computed value",
  2087. "logicalPropertyGroup": "border-width",
  2088. "styleDeclaration": [
  2089. "border-inline-end-width",
  2090. "borderInlineEndWidth"
  2091. ],
  2092. "syntax": "<line-width>",
  2093. "extended": []
  2094. }
  2095. ],
  2096. [
  2097. "border-inline-start",
  2098. {
  2099. "name": "border-inline-start",
  2100. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start",
  2101. "initial": "See individual properties",
  2102. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2103. "inherited": "no",
  2104. "percentages": "N/A",
  2105. "computedValue": "see individual properties",
  2106. "animationType": "see individual properties",
  2107. "canonicalOrder": "per grammar",
  2108. "styleDeclaration": [
  2109. "border-inline-start",
  2110. "borderInlineStart"
  2111. ],
  2112. "syntax": "<line-width> || <line-style> || <color>",
  2113. "extended": []
  2114. }
  2115. ],
  2116. [
  2117. "border-inline-start-color",
  2118. {
  2119. "name": "border-inline-start-color",
  2120. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-color",
  2121. "initial": "currentcolor",
  2122. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2123. "inherited": "no",
  2124. "percentages": "N/A",
  2125. "computedValue": "the computed color and/or a one-dimensional image function",
  2126. "canonicalOrder": "per grammar",
  2127. "animationType": "see prose",
  2128. "logicalPropertyGroup": "border-color",
  2129. "styleDeclaration": [
  2130. "border-inline-start-color",
  2131. "borderInlineStartColor"
  2132. ],
  2133. "syntax": "<color> | <image-1D>",
  2134. "extended": []
  2135. }
  2136. ],
  2137. [
  2138. "border-inline-start-radius",
  2139. {
  2140. "name": "border-inline-start-radius",
  2141. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-radius",
  2142. "initial": "0",
  2143. "appliesTo": "all elements (but see prose)",
  2144. "inherited": "no",
  2145. "percentages": "Refer to corresponding dimension of the border box.",
  2146. "computedValue": "see individual properties",
  2147. "animationType": "see individual properties",
  2148. "canonicalOrder": "per grammar",
  2149. "styleDeclaration": [
  2150. "border-inline-start-radius",
  2151. "borderInlineStartRadius"
  2152. ],
  2153. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  2154. "extended": []
  2155. }
  2156. ],
  2157. [
  2158. "border-inline-start-style",
  2159. {
  2160. "name": "border-inline-start-style",
  2161. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-style",
  2162. "initial": "none",
  2163. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2164. "inherited": "no",
  2165. "percentages": "N/A",
  2166. "computedValue": "specified keyword",
  2167. "canonicalOrder": "per grammar",
  2168. "animationType": "discrete",
  2169. "logicalPropertyGroup": "border-style",
  2170. "styleDeclaration": [
  2171. "border-inline-start-style",
  2172. "borderInlineStartStyle"
  2173. ],
  2174. "syntax": "<line-style>",
  2175. "extended": []
  2176. }
  2177. ],
  2178. [
  2179. "border-inline-start-width",
  2180. {
  2181. "name": "border-inline-start-width",
  2182. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-start-width",
  2183. "initial": "medium",
  2184. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2185. "inherited": "no",
  2186. "percentages": "N/A",
  2187. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  2188. "canonicalOrder": "per grammar",
  2189. "animationType": "by computed value",
  2190. "logicalPropertyGroup": "border-width",
  2191. "styleDeclaration": [
  2192. "border-inline-start-width",
  2193. "borderInlineStartWidth"
  2194. ],
  2195. "syntax": "<line-width>",
  2196. "extended": []
  2197. }
  2198. ],
  2199. [
  2200. "border-inline-style",
  2201. {
  2202. "name": "border-inline-style",
  2203. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-style",
  2204. "initial": "see individual properties",
  2205. "appliesTo": "see individual properties",
  2206. "inherited": "see individual properties",
  2207. "percentages": "see individual properties",
  2208. "computedValue": "see individual properties",
  2209. "animationType": "see individual properties",
  2210. "canonicalOrder": "per grammar",
  2211. "styleDeclaration": [
  2212. "border-inline-style",
  2213. "borderInlineStyle"
  2214. ],
  2215. "syntax": "<'border-top-style'>{1,2}",
  2216. "extended": []
  2217. }
  2218. ],
  2219. [
  2220. "border-inline-width",
  2221. {
  2222. "name": "border-inline-width",
  2223. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-inline-width",
  2224. "initial": "see individual properties",
  2225. "appliesTo": "see individual properties",
  2226. "inherited": "see individual properties",
  2227. "percentages": "see individual properties",
  2228. "computedValue": "see individual properties",
  2229. "animationType": "see individual properties",
  2230. "canonicalOrder": "per grammar",
  2231. "styleDeclaration": [
  2232. "border-inline-width",
  2233. "borderInlineWidth"
  2234. ],
  2235. "syntax": "<'border-top-width'>{1,2}",
  2236. "extended": []
  2237. }
  2238. ],
  2239. [
  2240. "border-left",
  2241. {
  2242. "name": "border-left",
  2243. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left",
  2244. "initial": "See individual properties",
  2245. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2246. "inherited": "no",
  2247. "percentages": "N/A",
  2248. "computedValue": "see individual properties",
  2249. "animationType": "see individual properties",
  2250. "canonicalOrder": "per grammar",
  2251. "styleDeclaration": [
  2252. "border-left",
  2253. "borderLeft"
  2254. ],
  2255. "syntax": "<line-width> || <line-style> || <color>",
  2256. "extended": []
  2257. }
  2258. ],
  2259. [
  2260. "border-left-color",
  2261. {
  2262. "name": "border-left-color",
  2263. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-color",
  2264. "initial": "currentcolor",
  2265. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2266. "inherited": "no",
  2267. "percentages": "N/A",
  2268. "computedValue": "the computed color and/or a one-dimensional image function",
  2269. "canonicalOrder": "per grammar",
  2270. "animationType": "see prose",
  2271. "logicalPropertyGroup": "border-color",
  2272. "styleDeclaration": [
  2273. "border-left-color",
  2274. "borderLeftColor"
  2275. ],
  2276. "syntax": "<color> | <image-1D>",
  2277. "extended": []
  2278. }
  2279. ],
  2280. [
  2281. "border-left-radius",
  2282. {
  2283. "name": "border-left-radius",
  2284. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-radius",
  2285. "initial": "0",
  2286. "appliesTo": "all elements (but see prose)",
  2287. "inherited": "no",
  2288. "percentages": "Refer to corresponding dimension of the border box.",
  2289. "computedValue": "see individual properties",
  2290. "animationType": "see individual properties",
  2291. "canonicalOrder": "per grammar",
  2292. "styleDeclaration": [
  2293. "border-left-radius",
  2294. "borderLeftRadius"
  2295. ],
  2296. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  2297. "extended": []
  2298. }
  2299. ],
  2300. [
  2301. "border-left-style",
  2302. {
  2303. "name": "border-left-style",
  2304. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-style",
  2305. "initial": "none",
  2306. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2307. "inherited": "no",
  2308. "percentages": "N/A",
  2309. "computedValue": "specified keyword",
  2310. "canonicalOrder": "per grammar",
  2311. "animationType": "discrete",
  2312. "logicalPropertyGroup": "border-style",
  2313. "styleDeclaration": [
  2314. "border-left-style",
  2315. "borderLeftStyle"
  2316. ],
  2317. "syntax": "<line-style>",
  2318. "extended": []
  2319. }
  2320. ],
  2321. [
  2322. "border-left-width",
  2323. {
  2324. "name": "border-left-width",
  2325. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-left-width",
  2326. "initial": "medium",
  2327. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2328. "inherited": "no",
  2329. "percentages": "N/A",
  2330. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  2331. "canonicalOrder": "per grammar",
  2332. "animationType": "by computed value",
  2333. "logicalPropertyGroup": "border-width",
  2334. "styleDeclaration": [
  2335. "border-left-width",
  2336. "borderLeftWidth"
  2337. ],
  2338. "syntax": "<line-width>",
  2339. "extended": []
  2340. }
  2341. ],
  2342. [
  2343. "border-limit",
  2344. {
  2345. "name": "border-limit",
  2346. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-limit",
  2347. "initial": "all",
  2348. "appliesTo": "all elements, except table element when border-collapse is collapse",
  2349. "inherited": "no",
  2350. "percentages": "relative to border-box",
  2351. "computedValue": "as specified",
  2352. "canonicalOrder": "per grammar",
  2353. "animationType": "discrete",
  2354. "styleDeclaration": [
  2355. "border-limit",
  2356. "borderLimit"
  2357. ],
  2358. "syntax": "all | [ sides | corners ] <length-percentage [0,∞]>? | [ top | right | bottom | left ] <length-percentage [0,∞]>",
  2359. "extended": []
  2360. }
  2361. ],
  2362. [
  2363. "border-radius",
  2364. {
  2365. "name": "border-radius",
  2366. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-radius",
  2367. "initial": "see individual properties",
  2368. "appliesTo": "see individual properties",
  2369. "inherited": "see individual properties",
  2370. "percentages": "see individual properties",
  2371. "computedValue": "see individual properties",
  2372. "animationType": "see individual properties",
  2373. "canonicalOrder": "per grammar",
  2374. "styleDeclaration": [
  2375. "border-radius",
  2376. "borderRadius"
  2377. ],
  2378. "syntax": "<length-percentage [0,∞]>{1,4} [ / <length-percentage [0,∞]>{1,4} ]?",
  2379. "extended": []
  2380. }
  2381. ],
  2382. [
  2383. "border-right",
  2384. {
  2385. "name": "border-right",
  2386. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right",
  2387. "initial": "See individual properties",
  2388. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2389. "inherited": "no",
  2390. "percentages": "N/A",
  2391. "computedValue": "see individual properties",
  2392. "animationType": "see individual properties",
  2393. "canonicalOrder": "per grammar",
  2394. "styleDeclaration": [
  2395. "border-right",
  2396. "borderRight"
  2397. ],
  2398. "syntax": "<line-width> || <line-style> || <color>",
  2399. "extended": []
  2400. }
  2401. ],
  2402. [
  2403. "border-right-color",
  2404. {
  2405. "name": "border-right-color",
  2406. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-color",
  2407. "initial": "currentcolor",
  2408. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2409. "inherited": "no",
  2410. "percentages": "N/A",
  2411. "computedValue": "the computed color and/or a one-dimensional image function",
  2412. "canonicalOrder": "per grammar",
  2413. "animationType": "see prose",
  2414. "logicalPropertyGroup": "border-color",
  2415. "styleDeclaration": [
  2416. "border-right-color",
  2417. "borderRightColor"
  2418. ],
  2419. "syntax": "<color> | <image-1D>",
  2420. "extended": []
  2421. }
  2422. ],
  2423. [
  2424. "border-right-radius",
  2425. {
  2426. "name": "border-right-radius",
  2427. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-radius",
  2428. "initial": "0",
  2429. "appliesTo": "all elements (but see prose)",
  2430. "inherited": "no",
  2431. "percentages": "Refer to corresponding dimension of the border box.",
  2432. "computedValue": "see individual properties",
  2433. "animationType": "see individual properties",
  2434. "canonicalOrder": "per grammar",
  2435. "styleDeclaration": [
  2436. "border-right-radius",
  2437. "borderRightRadius"
  2438. ],
  2439. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  2440. "extended": []
  2441. }
  2442. ],
  2443. [
  2444. "border-right-style",
  2445. {
  2446. "name": "border-right-style",
  2447. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-style",
  2448. "initial": "none",
  2449. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2450. "inherited": "no",
  2451. "percentages": "N/A",
  2452. "computedValue": "specified keyword",
  2453. "canonicalOrder": "per grammar",
  2454. "animationType": "discrete",
  2455. "logicalPropertyGroup": "border-style",
  2456. "styleDeclaration": [
  2457. "border-right-style",
  2458. "borderRightStyle"
  2459. ],
  2460. "syntax": "<line-style>",
  2461. "extended": []
  2462. }
  2463. ],
  2464. [
  2465. "border-right-width",
  2466. {
  2467. "name": "border-right-width",
  2468. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-right-width",
  2469. "initial": "medium",
  2470. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2471. "inherited": "no",
  2472. "percentages": "N/A",
  2473. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  2474. "canonicalOrder": "per grammar",
  2475. "animationType": "by computed value",
  2476. "logicalPropertyGroup": "border-width",
  2477. "styleDeclaration": [
  2478. "border-right-width",
  2479. "borderRightWidth"
  2480. ],
  2481. "syntax": "<line-width>",
  2482. "extended": []
  2483. }
  2484. ],
  2485. [
  2486. "border-shape",
  2487. {
  2488. "name": "border-shape",
  2489. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-shape",
  2490. "initial": "none",
  2491. "appliesTo": "all elements",
  2492. "inherited": "no",
  2493. "percentages": "see prose",
  2494. "computedValue": "list, each item a computed color",
  2495. "canonicalOrder": "per grammar",
  2496. "animationType": "by computed value",
  2497. "styleDeclaration": [
  2498. "border-shape",
  2499. "borderShape"
  2500. ],
  2501. "syntax": "none | [ <basic-shape> <geometry-box>?]{1,2}",
  2502. "extended": []
  2503. }
  2504. ],
  2505. [
  2506. "border-spacing",
  2507. {
  2508. "name": "border-spacing",
  2509. "href": "https://drafts.csswg.org/css-tables-3/#propdef-border-spacing",
  2510. "initial": "0px 0px",
  2511. "appliesTo": "table grid boxes when border-collapse is separate",
  2512. "inherited": "yes",
  2513. "percentages": "n/a",
  2514. "computedValue": "two absolute lengths",
  2515. "canonicalOrder": "per grammar",
  2516. "animationType": "by computed value",
  2517. "styleDeclaration": [
  2518. "border-spacing",
  2519. "borderSpacing"
  2520. ],
  2521. "syntax": "<length>{1,2}",
  2522. "extended": []
  2523. }
  2524. ],
  2525. [
  2526. "border-start-end-radius",
  2527. {
  2528. "name": "border-start-end-radius",
  2529. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-start-end-radius",
  2530. "initial": "0",
  2531. "appliesTo": "all elements (but see prose)",
  2532. "inherited": "no",
  2533. "percentages": "Refer to corresponding dimension of the border box.",
  2534. "computedValue": "pair of computed <length-percentage> values",
  2535. "canonicalOrder": "per grammar",
  2536. "animationType": "by computed value",
  2537. "logicalPropertyGroup": "border-radius",
  2538. "styleDeclaration": [
  2539. "border-start-end-radius",
  2540. "borderStartEndRadius"
  2541. ],
  2542. "syntax": "<border-radius>",
  2543. "extended": []
  2544. }
  2545. ],
  2546. [
  2547. "border-start-start-radius",
  2548. {
  2549. "name": "border-start-start-radius",
  2550. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-start-start-radius",
  2551. "initial": "0",
  2552. "appliesTo": "all elements (but see prose)",
  2553. "inherited": "no",
  2554. "percentages": "Refer to corresponding dimension of the border box.",
  2555. "computedValue": "pair of computed <length-percentage> values",
  2556. "canonicalOrder": "per grammar",
  2557. "animationType": "by computed value",
  2558. "logicalPropertyGroup": "border-radius",
  2559. "styleDeclaration": [
  2560. "border-start-start-radius",
  2561. "borderStartStartRadius"
  2562. ],
  2563. "syntax": "<border-radius>",
  2564. "extended": []
  2565. }
  2566. ],
  2567. [
  2568. "border-style",
  2569. {
  2570. "name": "border-style",
  2571. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-style",
  2572. "initial": "see individual properties",
  2573. "appliesTo": "see individual properties",
  2574. "inherited": "see individual properties",
  2575. "percentages": "see individual properties",
  2576. "computedValue": "see individual properties",
  2577. "animationType": "see individual properties",
  2578. "canonicalOrder": "per grammar",
  2579. "styleDeclaration": [
  2580. "border-style",
  2581. "borderStyle"
  2582. ],
  2583. "syntax": "<'border-top-style'>{1,4}",
  2584. "extended": []
  2585. }
  2586. ],
  2587. [
  2588. "border-top",
  2589. {
  2590. "name": "border-top",
  2591. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top",
  2592. "initial": "See individual properties",
  2593. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2594. "inherited": "no",
  2595. "percentages": "N/A",
  2596. "computedValue": "see individual properties",
  2597. "animationType": "see individual properties",
  2598. "canonicalOrder": "per grammar",
  2599. "styleDeclaration": [
  2600. "border-top",
  2601. "borderTop"
  2602. ],
  2603. "syntax": "<line-width> || <line-style> || <color>",
  2604. "extended": []
  2605. }
  2606. ],
  2607. [
  2608. "border-top-color",
  2609. {
  2610. "name": "border-top-color",
  2611. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-color",
  2612. "initial": "currentcolor",
  2613. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2614. "inherited": "no",
  2615. "percentages": "N/A",
  2616. "computedValue": "the computed color and/or a one-dimensional image function",
  2617. "canonicalOrder": "per grammar",
  2618. "animationType": "see prose",
  2619. "logicalPropertyGroup": "border-color",
  2620. "styleDeclaration": [
  2621. "border-top-color",
  2622. "borderTopColor"
  2623. ],
  2624. "syntax": "<color> | <image-1D>",
  2625. "extended": []
  2626. }
  2627. ],
  2628. [
  2629. "border-top-left-radius",
  2630. {
  2631. "name": "border-top-left-radius",
  2632. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-left-radius",
  2633. "initial": "0",
  2634. "appliesTo": "all elements (but see prose)",
  2635. "inherited": "no",
  2636. "percentages": "Refer to corresponding dimension of the border box.",
  2637. "computedValue": "pair of computed <length-percentage> values",
  2638. "canonicalOrder": "per grammar",
  2639. "animationType": "by computed value",
  2640. "logicalPropertyGroup": "border-radius",
  2641. "styleDeclaration": [
  2642. "border-top-left-radius",
  2643. "borderTopLeftRadius"
  2644. ],
  2645. "syntax": "<border-radius>",
  2646. "extended": []
  2647. }
  2648. ],
  2649. [
  2650. "border-top-radius",
  2651. {
  2652. "name": "border-top-radius",
  2653. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-radius",
  2654. "initial": "0",
  2655. "appliesTo": "all elements (but see prose)",
  2656. "inherited": "no",
  2657. "percentages": "Refer to corresponding dimension of the border box.",
  2658. "computedValue": "see individual properties",
  2659. "animationType": "see individual properties",
  2660. "canonicalOrder": "per grammar",
  2661. "styleDeclaration": [
  2662. "border-top-radius",
  2663. "borderTopRadius"
  2664. ],
  2665. "syntax": "<length-percentage [0,∞]>{1,2} [ / <length-percentage [0,∞]>{1,2} ]?",
  2666. "extended": []
  2667. }
  2668. ],
  2669. [
  2670. "border-top-right-radius",
  2671. {
  2672. "name": "border-top-right-radius",
  2673. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-right-radius",
  2674. "initial": "0",
  2675. "appliesTo": "all elements (but see prose)",
  2676. "inherited": "no",
  2677. "percentages": "Refer to corresponding dimension of the border box.",
  2678. "computedValue": "pair of computed <length-percentage> values",
  2679. "canonicalOrder": "per grammar",
  2680. "animationType": "by computed value",
  2681. "logicalPropertyGroup": "border-radius",
  2682. "styleDeclaration": [
  2683. "border-top-right-radius",
  2684. "borderTopRightRadius"
  2685. ],
  2686. "syntax": "<border-radius>",
  2687. "extended": []
  2688. }
  2689. ],
  2690. [
  2691. "border-top-style",
  2692. {
  2693. "name": "border-top-style",
  2694. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-style",
  2695. "initial": "none",
  2696. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2697. "inherited": "no",
  2698. "percentages": "N/A",
  2699. "computedValue": "specified keyword",
  2700. "canonicalOrder": "per grammar",
  2701. "animationType": "discrete",
  2702. "logicalPropertyGroup": "border-style",
  2703. "styleDeclaration": [
  2704. "border-top-style",
  2705. "borderTopStyle"
  2706. ],
  2707. "syntax": "<line-style>",
  2708. "extended": []
  2709. }
  2710. ],
  2711. [
  2712. "border-top-width",
  2713. {
  2714. "name": "border-top-width",
  2715. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-top-width",
  2716. "initial": "medium",
  2717. "appliesTo": "all elements except ruby base containers and ruby annotation containers",
  2718. "inherited": "no",
  2719. "percentages": "N/A",
  2720. "computedValue": "absolute length, snapped as a border width; zero if the border style is none or hidden",
  2721. "canonicalOrder": "per grammar",
  2722. "animationType": "by computed value",
  2723. "logicalPropertyGroup": "border-width",
  2724. "styleDeclaration": [
  2725. "border-top-width",
  2726. "borderTopWidth"
  2727. ],
  2728. "syntax": "<line-width>",
  2729. "extended": []
  2730. }
  2731. ],
  2732. [
  2733. "border-width",
  2734. {
  2735. "name": "border-width",
  2736. "href": "https://drafts.csswg.org/css-borders-4/#propdef-border-width",
  2737. "initial": "see individual properties",
  2738. "appliesTo": "see individual properties",
  2739. "inherited": "see individual properties",
  2740. "percentages": "see individual properties",
  2741. "computedValue": "see individual properties",
  2742. "animationType": "see individual properties",
  2743. "canonicalOrder": "per grammar",
  2744. "styleDeclaration": [
  2745. "border-width",
  2746. "borderWidth"
  2747. ],
  2748. "syntax": "<'border-top-width'>{1,4}",
  2749. "extended": []
  2750. }
  2751. ],
  2752. [
  2753. "bottom",
  2754. {
  2755. "name": "bottom",
  2756. "href": "https://drafts.csswg.org/css-position-3/#propdef-bottom",
  2757. "initial": "auto",
  2758. "appliesTo": "positioned elements",
  2759. "inherited": "no",
  2760. "percentages": "refer to size of containing block; see prose",
  2761. "computedValue": "the keyword auto or a computed <length-percentage> value",
  2762. "canonicalOrder": "per grammar",
  2763. "animationType": "by computed value type",
  2764. "logicalPropertyGroup": "inset",
  2765. "styleDeclaration": [
  2766. "bottom"
  2767. ],
  2768. "syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
  2769. "extended": [
  2770. "https://drafts.csswg.org/css-anchor-position-1/"
  2771. ]
  2772. }
  2773. ],
  2774. [
  2775. "box-decoration-break",
  2776. {
  2777. "name": "box-decoration-break",
  2778. "href": "https://drafts.csswg.org/css-break-4/#propdef-box-decoration-break",
  2779. "initial": "slice",
  2780. "appliesTo": "all elements",
  2781. "inherited": "no",
  2782. "percentages": "n/a",
  2783. "computedValue": "specified keyword",
  2784. "canonicalOrder": "per grammar",
  2785. "animationType": "discrete",
  2786. "styleDeclaration": [
  2787. "box-decoration-break",
  2788. "boxDecorationBreak"
  2789. ],
  2790. "syntax": "slice | clone",
  2791. "extended": []
  2792. }
  2793. ],
  2794. [
  2795. "box-shadow",
  2796. {
  2797. "name": "box-shadow",
  2798. "href": "https://drafts.csswg.org/css-borders-4/#propdef-box-shadow",
  2799. "initial": "none",
  2800. "appliesTo": "all elements",
  2801. "inherited": "no",
  2802. "percentages": "N/A",
  2803. "computedValue": "see individual properties",
  2804. "canonicalOrder": "per grammar",
  2805. "animationType": "see individual properties",
  2806. "styleDeclaration": [
  2807. "box-shadow",
  2808. "boxShadow"
  2809. ],
  2810. "syntax": "<spread-shadow>#",
  2811. "extended": []
  2812. }
  2813. ],
  2814. [
  2815. "box-shadow-blur",
  2816. {
  2817. "name": "box-shadow-blur",
  2818. "href": "https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-blur",
  2819. "initial": "0",
  2820. "appliesTo": "all elements",
  2821. "inherited": "no",
  2822. "percentages": "N/A",
  2823. "computedValue": "list, each item a <length>",
  2824. "canonicalOrder": "per grammar",
  2825. "animationType": "by computed value",
  2826. "styleDeclaration": [
  2827. "box-shadow-blur",
  2828. "boxShadowBlur"
  2829. ],
  2830. "syntax": "<length [0,∞]>#",
  2831. "extended": []
  2832. }
  2833. ],
  2834. [
  2835. "box-shadow-color",
  2836. {
  2837. "name": "box-shadow-color",
  2838. "href": "https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-color",
  2839. "initial": "currentcolor",
  2840. "appliesTo": "all elements",
  2841. "inherited": "no",
  2842. "percentages": "N/A",
  2843. "computedValue": "list, each item a computed color",
  2844. "canonicalOrder": "per grammar",
  2845. "animationType": "by computed value",
  2846. "styleDeclaration": [
  2847. "box-shadow-color",
  2848. "boxShadowColor"
  2849. ],
  2850. "syntax": "<color>#",
  2851. "extended": []
  2852. }
  2853. ],
  2854. [
  2855. "box-shadow-offset",
  2856. {
  2857. "name": "box-shadow-offset",
  2858. "href": "https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-offset",
  2859. "initial": "none",
  2860. "appliesTo": "all elements",
  2861. "inherited": "no",
  2862. "percentages": "N/A",
  2863. "computedValue": "list, each item either none or a pair of offsets (horizontal and vertical) from the element‘s box",
  2864. "canonicalOrder": "per grammar",
  2865. "animationType": "by computed value, treating none as 0 0 when interpolated with non-none values.",
  2866. "styleDeclaration": [
  2867. "box-shadow-offset",
  2868. "boxShadowOffset"
  2869. ],
  2870. "syntax": "[ none | <length>{1,2} ]#",
  2871. "extended": []
  2872. }
  2873. ],
  2874. [
  2875. "box-shadow-position",
  2876. {
  2877. "name": "box-shadow-position",
  2878. "href": "https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-position",
  2879. "initial": "outset",
  2880. "appliesTo": "all elements",
  2881. "inherited": "no",
  2882. "percentages": "N/A",
  2883. "computedValue": "list, each item one of the keywords",
  2884. "canonicalOrder": "per grammar",
  2885. "animationType": "by computed value",
  2886. "styleDeclaration": [
  2887. "box-shadow-position",
  2888. "boxShadowPosition"
  2889. ],
  2890. "syntax": "[ outset | inset ]#",
  2891. "extended": []
  2892. }
  2893. ],
  2894. [
  2895. "box-shadow-spread",
  2896. {
  2897. "name": "box-shadow-spread",
  2898. "href": "https://drafts.csswg.org/css-borders-4/#propdef-box-shadow-spread",
  2899. "initial": "0",
  2900. "appliesTo": "all elements",
  2901. "inherited": "no",
  2902. "percentages": "N/A",
  2903. "computedValue": "list, each item a <length>",
  2904. "canonicalOrder": "per grammar",
  2905. "animationType": "by computed value",
  2906. "styleDeclaration": [
  2907. "box-shadow-spread",
  2908. "boxShadowSpread"
  2909. ],
  2910. "syntax": "<length>#",
  2911. "extended": []
  2912. }
  2913. ],
  2914. [
  2915. "box-sizing",
  2916. {
  2917. "name": "box-sizing",
  2918. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-box-sizing",
  2919. "initial": "content-box",
  2920. "appliesTo": "all elements that accept width or height",
  2921. "inherited": "no",
  2922. "percentages": "N/A",
  2923. "computedValue": "specified keyword",
  2924. "canonicalOrder": "per grammar",
  2925. "animationType": "discrete",
  2926. "styleDeclaration": [
  2927. "box-sizing",
  2928. "boxSizing"
  2929. ],
  2930. "syntax": "content-box | border-box",
  2931. "extended": []
  2932. }
  2933. ],
  2934. [
  2935. "box-snap",
  2936. {
  2937. "name": "box-snap",
  2938. "href": "https://drafts.csswg.org/css-line-grid-1/#propdef-box-snap",
  2939. "initial": "none",
  2940. "appliesTo": "block-level boxes and internal table elements except table cells",
  2941. "inherited": "yes",
  2942. "percentages": "N/A",
  2943. "computedValue": "as specified",
  2944. "canonicalOrder": "per grammar",
  2945. "animationType": "discrete",
  2946. "styleDeclaration": [
  2947. "box-snap",
  2948. "boxSnap"
  2949. ],
  2950. "syntax": "none | block-start | block-end | center | baseline | last-baseline",
  2951. "extended": []
  2952. }
  2953. ],
  2954. [
  2955. "break-after",
  2956. {
  2957. "name": "break-after",
  2958. "href": "https://drafts.csswg.org/css-break-4/#propdef-break-after",
  2959. "initial": "auto",
  2960. "appliesTo": "block-level boxes, grid items, flex items, table row groups, table rows (but see prose)",
  2961. "inherited": "no",
  2962. "percentages": "n/a",
  2963. "computedValue": "specified keyword",
  2964. "canonicalOrder": "per grammar",
  2965. "animationType": "discrete",
  2966. "styleDeclaration": [
  2967. "break-after",
  2968. "breakAfter"
  2969. ],
  2970. "syntax": "auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",
  2971. "extended": []
  2972. }
  2973. ],
  2974. [
  2975. "break-before",
  2976. {
  2977. "name": "break-before",
  2978. "href": "https://drafts.csswg.org/css-break-4/#propdef-break-before",
  2979. "initial": "auto",
  2980. "appliesTo": "block-level boxes, grid items, flex items, table row groups, table rows (but see prose)",
  2981. "inherited": "no",
  2982. "percentages": "n/a",
  2983. "computedValue": "specified keyword",
  2984. "canonicalOrder": "per grammar",
  2985. "animationType": "discrete",
  2986. "styleDeclaration": [
  2987. "break-before",
  2988. "breakBefore"
  2989. ],
  2990. "syntax": "auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region",
  2991. "extended": []
  2992. }
  2993. ],
  2994. [
  2995. "break-inside",
  2996. {
  2997. "name": "break-inside",
  2998. "href": "https://drafts.csswg.org/css-break-4/#propdef-break-inside",
  2999. "initial": "auto",
  3000. "appliesTo": "all elements except inline-level boxes, internal ruby boxes, table column boxes, table column group boxes, absolutely-positioned boxes",
  3001. "inherited": "no",
  3002. "percentages": "n/a",
  3003. "computedValue": "specified keyword",
  3004. "canonicalOrder": "per grammar",
  3005. "animationType": "discrete",
  3006. "styleDeclaration": [
  3007. "break-inside",
  3008. "breakInside"
  3009. ],
  3010. "syntax": "auto | avoid | avoid-page | avoid-column | avoid-region",
  3011. "extended": []
  3012. }
  3013. ],
  3014. [
  3015. "caption-side",
  3016. {
  3017. "name": "caption-side",
  3018. "href": "https://drafts.csswg.org/css-tables-3/#propdef-caption-side",
  3019. "initial": "top",
  3020. "appliesTo": "table-caption boxes",
  3021. "inherited": "yes",
  3022. "percentages": "n/a",
  3023. "computedValue": "specified keyword",
  3024. "canonicalOrder": "per grammar",
  3025. "animationType": "discrete",
  3026. "styleDeclaration": [
  3027. "caption-side",
  3028. "captionSide"
  3029. ],
  3030. "syntax": "top | bottom",
  3031. "extended": []
  3032. }
  3033. ],
  3034. [
  3035. "caret",
  3036. {
  3037. "name": "caret",
  3038. "href": "https://drafts.csswg.org/css-ui-4/#propdef-caret",
  3039. "initial": "auto",
  3040. "appliesTo": "text or elements that accept text input",
  3041. "inherited": "yes",
  3042. "percentages": "N/A",
  3043. "computedValue": "see individual properties",
  3044. "animationType": "see individual properties",
  3045. "canonicalOrder": "per grammar",
  3046. "styleDeclaration": [
  3047. "caret"
  3048. ],
  3049. "syntax": "<'caret-color'> || <'caret-animation'> || <'caret-shape'>",
  3050. "extended": []
  3051. }
  3052. ],
  3053. [
  3054. "caret-color",
  3055. {
  3056. "name": "caret-color",
  3057. "href": "https://drafts.csswg.org/css-ui-4/#propdef-caret-color",
  3058. "initial": "auto",
  3059. "appliesTo": "text or elements that accept text input",
  3060. "inherited": "yes",
  3061. "percentages": "N/A",
  3062. "computedValue": "The computed value for auto is auto. For <color> values, see CSS Color 4 § 14. Resolving <color> Values.",
  3063. "canonicalOrder": "per grammar",
  3064. "animationType": "by computed value",
  3065. "styleDeclaration": [
  3066. "caret-color",
  3067. "caretColor"
  3068. ],
  3069. "syntax": "auto | <color>",
  3070. "extended": []
  3071. }
  3072. ],
  3073. [
  3074. "caret-shape",
  3075. {
  3076. "name": "caret-shape",
  3077. "href": "https://drafts.csswg.org/css-ui-4/#propdef-caret-shape",
  3078. "initial": "auto",
  3079. "appliesTo": "text or elements that accept text input",
  3080. "inherited": "yes",
  3081. "percentages": "N/A",
  3082. "computedValue": "specified keyword",
  3083. "canonicalOrder": "per grammar",
  3084. "animationType": "by computed value",
  3085. "styleDeclaration": [
  3086. "caret-shape",
  3087. "caretShape"
  3088. ],
  3089. "syntax": "auto | bar | block | underscore",
  3090. "extended": []
  3091. }
  3092. ],
  3093. [
  3094. "clear",
  3095. {
  3096. "name": "clear",
  3097. "href": "https://drafts.csswg.org/css-page-floats-3/#propdef-clear",
  3098. "initial": "none",
  3099. "appliesTo": "block-level elements, floats, regions, pages",
  3100. "inherited": "no",
  3101. "percentages": "N/A",
  3102. "computedValue": "specified keyword",
  3103. "canonicalOrder": "per grammar",
  3104. "animationType": "discrete",
  3105. "styleDeclaration": [
  3106. "clear"
  3107. ],
  3108. "syntax": "inline-start | inline-end | block-start | block-end | left | right | top | bottom | both-inline | both-block | both | none",
  3109. "extended": []
  3110. }
  3111. ],
  3112. [
  3113. "clip",
  3114. {
  3115. "name": "clip",
  3116. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-clip",
  3117. "initial": "auto",
  3118. "appliesTo": "Absolutely positioned elements. In SVG, it applies to elements which establish a new viewport, pattern elements and mask elements.",
  3119. "inherited": "no",
  3120. "percentages": "n/a",
  3121. "computedValue": "as specified",
  3122. "canonicalOrder": "per grammar",
  3123. "animationType": "by computed value",
  3124. "media": "visual",
  3125. "styleDeclaration": [
  3126. "clip"
  3127. ],
  3128. "syntax": "<rect()> | auto",
  3129. "extended": []
  3130. }
  3131. ],
  3132. [
  3133. "clip-path",
  3134. {
  3135. "name": "clip-path",
  3136. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-clip-path",
  3137. "initial": "none",
  3138. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  3139. "inherited": "no",
  3140. "percentages": "n/a",
  3141. "computedValue": "as specified, but with <url> values made absolute",
  3142. "canonicalOrder": "per grammar",
  3143. "animationType": "by computed value",
  3144. "media": "visual",
  3145. "styleDeclaration": [
  3146. "clip-path",
  3147. "clipPath"
  3148. ],
  3149. "syntax": "<clip-source> | [ <basic-shape> || <geometry-box> ] | none",
  3150. "extended": []
  3151. }
  3152. ],
  3153. [
  3154. "clip-rule",
  3155. {
  3156. "name": "clip-rule",
  3157. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-clip-rule",
  3158. "initial": "nonzero",
  3159. "appliesTo": "Applies to SVG graphics elements",
  3160. "inherited": "yes",
  3161. "percentages": "n/a",
  3162. "computedValue": "as specified",
  3163. "canonicalOrder": "per grammar",
  3164. "animationType": "discrete",
  3165. "media": "visual",
  3166. "styleDeclaration": [
  3167. "clip-rule",
  3168. "clipRule"
  3169. ],
  3170. "syntax": "nonzero | evenodd",
  3171. "extended": []
  3172. }
  3173. ],
  3174. [
  3175. "color",
  3176. {
  3177. "name": "color",
  3178. "href": "https://drafts.csswg.org/css-color-4/#propdef-color",
  3179. "initial": "CanvasText",
  3180. "appliesTo": "all elements and text",
  3181. "inherited": "yes",
  3182. "percentages": "N/A",
  3183. "computedValue": "computed color, see resolving color values",
  3184. "canonicalOrder": "per grammar",
  3185. "animationType": "by computed value type",
  3186. "styleDeclaration": [
  3187. "color"
  3188. ],
  3189. "syntax": "<color>",
  3190. "extended": []
  3191. }
  3192. ],
  3193. [
  3194. "color-adjust",
  3195. {
  3196. "name": "color-adjust",
  3197. "href": "https://drafts.csswg.org/css-color-adjust-1/#propdef-color-adjust",
  3198. "initial": "see individual properties",
  3199. "appliesTo": "see individual properties",
  3200. "inherited": "see individual properties",
  3201. "percentages": "see individual properties",
  3202. "computedValue": "see individual properties",
  3203. "animationType": "see individual properties",
  3204. "canonicalOrder": "per grammar",
  3205. "styleDeclaration": [
  3206. "color-adjust",
  3207. "colorAdjust"
  3208. ],
  3209. "syntax": "<'print-color-adjust'>",
  3210. "extended": []
  3211. }
  3212. ],
  3213. [
  3214. "color-interpolation",
  3215. {
  3216. "name": "color-interpolation",
  3217. "href": "https://svgwg.org/svg2-draft/painting.html#ColorInterpolationProperty",
  3218. "initial": "sRGB",
  3219. "appliesTo": "container elements, graphics elements, gradient elements, ‘use’ and ‘animate’",
  3220. "inherited": "yes",
  3221. "percentages": "N/A",
  3222. "media": "visual",
  3223. "computedValue": "as specified",
  3224. "animationType": "discrete",
  3225. "styleDeclaration": [
  3226. "color-interpolation",
  3227. "colorInterpolation"
  3228. ],
  3229. "syntax": "auto | sRGB | linearRGB",
  3230. "extended": []
  3231. }
  3232. ],
  3233. [
  3234. "color-interpolation-filters",
  3235. {
  3236. "name": "color-interpolation-filters",
  3237. "href": "https://drafts.fxtf.org/filter-effects-1/#propdef-color-interpolation-filters",
  3238. "initial": "linearRGB",
  3239. "appliesTo": "All filter primitives",
  3240. "inherited": "yes",
  3241. "percentages": "n/a",
  3242. "computedValue": "as specified",
  3243. "canonicalOrder": "per grammar",
  3244. "animationType": "discrete",
  3245. "media": "visual",
  3246. "styleDeclaration": [
  3247. "color-interpolation-filters",
  3248. "colorInterpolationFilters"
  3249. ],
  3250. "syntax": "auto | sRGB | linearRGB",
  3251. "extended": []
  3252. }
  3253. ],
  3254. [
  3255. "color-scheme",
  3256. {
  3257. "name": "color-scheme",
  3258. "href": "https://drafts.csswg.org/css-color-adjust-1/#propdef-color-scheme",
  3259. "initial": "normal",
  3260. "appliesTo": "all elements and text",
  3261. "inherited": "yes",
  3262. "percentages": "n/a",
  3263. "computedValue": "the keyword normal, or an ordered list of specified color scheme keywords",
  3264. "canonicalOrder": "per grammar",
  3265. "animationType": "discrete",
  3266. "styleDeclaration": [
  3267. "color-scheme",
  3268. "colorScheme"
  3269. ],
  3270. "syntax": "normal | [ light | dark | <custom-ident> ]+ && only?",
  3271. "extended": []
  3272. }
  3273. ],
  3274. [
  3275. "column-count",
  3276. {
  3277. "name": "column-count",
  3278. "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-count",
  3279. "initial": "auto",
  3280. "appliesTo": "block containers except table wrapper boxes",
  3281. "inherited": "no",
  3282. "percentages": "N/A",
  3283. "computedValue": "specified value",
  3284. "canonicalOrder": "per grammar",
  3285. "animationType": "by computed value",
  3286. "styleDeclaration": [
  3287. "column-count",
  3288. "columnCount"
  3289. ],
  3290. "syntax": "auto | <integer [1,∞]>",
  3291. "extended": []
  3292. }
  3293. ],
  3294. [
  3295. "column-fill",
  3296. {
  3297. "name": "column-fill",
  3298. "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-fill",
  3299. "initial": "balance",
  3300. "appliesTo": "multicol containers",
  3301. "inherited": "no",
  3302. "percentages": "N/A",
  3303. "computedValue": "specified keyword",
  3304. "canonicalOrder": "per grammar",
  3305. "animationType": "discrete",
  3306. "styleDeclaration": [
  3307. "column-fill",
  3308. "columnFill"
  3309. ],
  3310. "syntax": "auto | balance | balance-all",
  3311. "extended": []
  3312. }
  3313. ],
  3314. [
  3315. "column-gap",
  3316. {
  3317. "name": "column-gap",
  3318. "href": "https://drafts.csswg.org/css-align-3/#propdef-column-gap",
  3319. "initial": "normal",
  3320. "appliesTo": "multi-column containers, flex containers, grid containers",
  3321. "inherited": "no",
  3322. "percentages": "see § 8.3 Percentages In gap Properties",
  3323. "computedValue": "specified keyword, else a computed <length-percentage> value",
  3324. "canonicalOrder": "per grammar",
  3325. "animationType": "by computed value type",
  3326. "styleDeclaration": [
  3327. "column-gap",
  3328. "columnGap"
  3329. ],
  3330. "syntax": "normal | <length-percentage [0,∞]>",
  3331. "extended": []
  3332. }
  3333. ],
  3334. [
  3335. "column-rule",
  3336. {
  3337. "name": "column-rule",
  3338. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-column-rule",
  3339. "initial": "see individual properties",
  3340. "appliesTo": "see individual properties",
  3341. "inherited": "see individual properties",
  3342. "percentages": "see individual properties",
  3343. "computedValue": "see individual properties",
  3344. "animationType": "see individual properties",
  3345. "canonicalOrder": "per grammar",
  3346. "styleDeclaration": [
  3347. "column-rule",
  3348. "columnRule"
  3349. ],
  3350. "syntax": "<gap-rule-list> | <gap-auto-rule-list>",
  3351. "extended": []
  3352. }
  3353. ],
  3354. [
  3355. "column-rule-break",
  3356. {
  3357. "name": "column-rule-break",
  3358. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-column-rule-break",
  3359. "initial": "spanning-item",
  3360. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  3361. "inherited": "no",
  3362. "percentages": "n/a",
  3363. "computedValue": "as specified",
  3364. "canonicalOrder": "per grammar",
  3365. "animationType": "discrete",
  3366. "styleDeclaration": [
  3367. "column-rule-break",
  3368. "columnRuleBreak"
  3369. ],
  3370. "syntax": "none | spanning-item | intersection",
  3371. "extended": []
  3372. }
  3373. ],
  3374. [
  3375. "column-rule-color",
  3376. {
  3377. "name": "column-rule-color",
  3378. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-column-rule-color",
  3379. "initial": "currentcolor",
  3380. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  3381. "inherited": "no",
  3382. "percentages": "n/a",
  3383. "computedValue": "as specified",
  3384. "canonicalOrder": "per grammar",
  3385. "animationType": "repeatable list, see § 3.4.1 Interpolation behavior.",
  3386. "styleDeclaration": [
  3387. "column-rule-color",
  3388. "columnRuleColor"
  3389. ],
  3390. "syntax": "<line-color-list> | <auto-line-color-list>",
  3391. "extended": []
  3392. }
  3393. ],
  3394. [
  3395. "column-rule-outset",
  3396. {
  3397. "name": "column-rule-outset",
  3398. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-column-rule-outset",
  3399. "initial": "50%",
  3400. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  3401. "inherited": "no",
  3402. "percentages": "refer to the crossing gap width",
  3403. "computedValue": "as specified",
  3404. "canonicalOrder": "per grammar",
  3405. "animationType": "by computed value type",
  3406. "styleDeclaration": [
  3407. "column-rule-outset",
  3408. "columnRuleOutset"
  3409. ],
  3410. "syntax": "<length-percentage>",
  3411. "extended": []
  3412. }
  3413. ],
  3414. [
  3415. "column-rule-style",
  3416. {
  3417. "name": "column-rule-style",
  3418. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-column-rule-style",
  3419. "initial": "none",
  3420. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  3421. "inherited": "no",
  3422. "percentages": "n/a",
  3423. "computedValue": "as specified",
  3424. "canonicalOrder": "per grammar",
  3425. "animationType": "discrete",
  3426. "styleDeclaration": [
  3427. "column-rule-style",
  3428. "columnRuleStyle"
  3429. ],
  3430. "syntax": "<line-style-list> | <auto-line-style-list>",
  3431. "extended": []
  3432. }
  3433. ],
  3434. [
  3435. "column-rule-width",
  3436. {
  3437. "name": "column-rule-width",
  3438. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-column-rule-width",
  3439. "initial": "medium",
  3440. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  3441. "inherited": "no",
  3442. "percentages": "n/a",
  3443. "computedValue": "list of absolute lengths, snapped as a border width",
  3444. "canonicalOrder": "per grammar",
  3445. "animationType": "repeatable list, see § 3.4.1 Interpolation behavior.",
  3446. "styleDeclaration": [
  3447. "column-rule-width",
  3448. "columnRuleWidth"
  3449. ],
  3450. "syntax": "<line-width-list> | <auto-line-width-list>",
  3451. "extended": []
  3452. }
  3453. ],
  3454. [
  3455. "column-span",
  3456. {
  3457. "name": "column-span",
  3458. "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-span",
  3459. "initial": "none",
  3460. "appliesTo": "in-flow block-level elements",
  3461. "inherited": "no",
  3462. "percentages": "N/A",
  3463. "computedValue": "specified value",
  3464. "canonicalOrder": "per grammar",
  3465. "animationType": "discrete",
  3466. "styleDeclaration": [
  3467. "column-span",
  3468. "columnSpan"
  3469. ],
  3470. "syntax": "none | <integer [1,∞]> | all | auto",
  3471. "extended": []
  3472. }
  3473. ],
  3474. [
  3475. "column-width",
  3476. {
  3477. "name": "column-width",
  3478. "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-width",
  3479. "initial": "auto",
  3480. "appliesTo": "block containers except table wrapper boxes",
  3481. "inherited": "no",
  3482. "percentages": "N/A",
  3483. "computedValue": "the keyword auto or an absolute length",
  3484. "canonicalOrder": "per grammar",
  3485. "animationType": "by computed value type",
  3486. "styleDeclaration": [
  3487. "column-width",
  3488. "columnWidth"
  3489. ],
  3490. "syntax": "auto | <length [0,∞]> | min-content | max-content | fit-content(<length-percentage>)",
  3491. "extended": [
  3492. "https://drafts.csswg.org/css-sizing-3/"
  3493. ]
  3494. }
  3495. ],
  3496. [
  3497. "columns",
  3498. {
  3499. "name": "columns",
  3500. "href": "https://drafts.csswg.org/css-multicol-2/#propdef-columns",
  3501. "initial": "see individual properties",
  3502. "appliesTo": "see individual properties",
  3503. "inherited": "see individual properties",
  3504. "percentages": "see individual properties",
  3505. "computedValue": "see individual properties",
  3506. "animationType": "see individual properties",
  3507. "canonicalOrder": "per grammar",
  3508. "styleDeclaration": [
  3509. "columns"
  3510. ],
  3511. "syntax": "[ <'column-width'> || <'column-count'> ] [ / <'column-height'> ]?",
  3512. "extended": []
  3513. }
  3514. ],
  3515. [
  3516. "contain",
  3517. {
  3518. "name": "contain",
  3519. "href": "https://drafts.csswg.org/css-contain-2/#propdef-contain",
  3520. "initial": "none",
  3521. "appliesTo": "See below",
  3522. "inherited": "no",
  3523. "percentages": "n/a",
  3524. "computedValue": "the keyword none or one or more of size, layout, paint",
  3525. "canonicalOrder": "per grammar",
  3526. "animationType": "not animatable",
  3527. "styleDeclaration": [
  3528. "contain"
  3529. ],
  3530. "syntax": "none | strict | content | [ [size | inline-size] || layout || style || paint ] | view-transition",
  3531. "extended": [
  3532. "https://drafts.csswg.org/css-view-transitions-2/"
  3533. ]
  3534. }
  3535. ],
  3536. [
  3537. "contain-intrinsic-block-size",
  3538. {
  3539. "name": "contain-intrinsic-block-size",
  3540. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-block-size",
  3541. "initial": "none",
  3542. "appliesTo": "elements with size containment",
  3543. "inherited": "no",
  3544. "percentages": "n/a",
  3545. "computedValue": "as specified, with <length> values computed",
  3546. "canonicalOrder": "per grammar",
  3547. "animationType": "by computed value type",
  3548. "logicalPropertyGroup": "contain-intrinsic-size",
  3549. "styleDeclaration": [
  3550. "contain-intrinsic-block-size",
  3551. "containIntrinsicBlockSize"
  3552. ],
  3553. "syntax": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
  3554. "extended": []
  3555. }
  3556. ],
  3557. [
  3558. "contain-intrinsic-height",
  3559. {
  3560. "name": "contain-intrinsic-height",
  3561. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-height",
  3562. "initial": "none",
  3563. "appliesTo": "elements with size containment",
  3564. "inherited": "no",
  3565. "percentages": "n/a",
  3566. "computedValue": "as specified, with <length> values computed",
  3567. "canonicalOrder": "per grammar",
  3568. "animationType": "by computed value type",
  3569. "logicalPropertyGroup": "contain-intrinsic-size",
  3570. "styleDeclaration": [
  3571. "contain-intrinsic-height",
  3572. "containIntrinsicHeight"
  3573. ],
  3574. "syntax": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
  3575. "extended": []
  3576. }
  3577. ],
  3578. [
  3579. "contain-intrinsic-inline-size",
  3580. {
  3581. "name": "contain-intrinsic-inline-size",
  3582. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-inline-size",
  3583. "initial": "none",
  3584. "appliesTo": "elements with size containment",
  3585. "inherited": "no",
  3586. "percentages": "n/a",
  3587. "computedValue": "as specified, with <length> values computed",
  3588. "canonicalOrder": "per grammar",
  3589. "animationType": "by computed value type",
  3590. "logicalPropertyGroup": "contain-intrinsic-size",
  3591. "styleDeclaration": [
  3592. "contain-intrinsic-inline-size",
  3593. "containIntrinsicInlineSize"
  3594. ],
  3595. "syntax": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
  3596. "extended": []
  3597. }
  3598. ],
  3599. [
  3600. "contain-intrinsic-size",
  3601. {
  3602. "name": "contain-intrinsic-size",
  3603. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-size",
  3604. "initial": "see individual properties",
  3605. "appliesTo": "see individual properties",
  3606. "inherited": "see individual properties",
  3607. "percentages": "see individual properties",
  3608. "computedValue": "see individual properties",
  3609. "animationType": "see individual properties",
  3610. "canonicalOrder": "per grammar",
  3611. "styleDeclaration": [
  3612. "contain-intrinsic-size",
  3613. "containIntrinsicSize"
  3614. ],
  3615. "syntax": "[ [ auto | from-element ]? [ none | <length [0,∞]> ] ]{1,2}",
  3616. "extended": []
  3617. }
  3618. ],
  3619. [
  3620. "contain-intrinsic-width",
  3621. {
  3622. "name": "contain-intrinsic-width",
  3623. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-contain-intrinsic-width",
  3624. "initial": "none",
  3625. "appliesTo": "elements with size containment",
  3626. "inherited": "no",
  3627. "percentages": "n/a",
  3628. "computedValue": "as specified, with <length> values computed",
  3629. "canonicalOrder": "per grammar",
  3630. "animationType": "by computed value type",
  3631. "logicalPropertyGroup": "contain-intrinsic-size",
  3632. "styleDeclaration": [
  3633. "contain-intrinsic-width",
  3634. "containIntrinsicWidth"
  3635. ],
  3636. "syntax": "[ auto | from-element ]? [ none | <length [0,∞]> ]",
  3637. "extended": []
  3638. }
  3639. ],
  3640. [
  3641. "container",
  3642. {
  3643. "name": "container",
  3644. "href": "https://drafts.csswg.org/css-conditional-5/#propdef-container",
  3645. "initial": "see individual properties",
  3646. "appliesTo": "see individual properties",
  3647. "inherited": "see individual properties",
  3648. "percentages": "see individual properties",
  3649. "computedValue": "see individual properties",
  3650. "animationType": "see individual properties",
  3651. "canonicalOrder": "per grammar",
  3652. "styleDeclaration": [
  3653. "container"
  3654. ],
  3655. "syntax": "<'container-name'> [ / <'container-type'> ]?",
  3656. "extended": []
  3657. }
  3658. ],
  3659. [
  3660. "container-name",
  3661. {
  3662. "name": "container-name",
  3663. "href": "https://drafts.csswg.org/css-conditional-5/#propdef-container-name",
  3664. "initial": "none",
  3665. "appliesTo": "all elements",
  3666. "inherited": "no",
  3667. "percentages": "n/a",
  3668. "computedValue": "the keyword none, or an ordered list of identifiers",
  3669. "canonicalOrder": "per grammar",
  3670. "animationType": "not animatable",
  3671. "styleDeclaration": [
  3672. "container-name",
  3673. "containerName"
  3674. ],
  3675. "syntax": "none | <custom-ident>+",
  3676. "extended": []
  3677. }
  3678. ],
  3679. [
  3680. "container-type",
  3681. {
  3682. "name": "container-type",
  3683. "href": "https://drafts.csswg.org/css-conditional-5/#propdef-container-type",
  3684. "initial": "normal",
  3685. "appliesTo": "all elements",
  3686. "inherited": "no",
  3687. "percentages": "n/a",
  3688. "computedValue": "specified keyword",
  3689. "canonicalOrder": "per grammar",
  3690. "animationType": "not animatable",
  3691. "styleDeclaration": [
  3692. "container-type",
  3693. "containerType"
  3694. ],
  3695. "syntax": "normal | [ [ size | inline-size ] || scroll-state ]",
  3696. "extended": []
  3697. }
  3698. ],
  3699. [
  3700. "content",
  3701. {
  3702. "name": "content",
  3703. "href": "https://drafts.csswg.org/css-content-3/#propdef-content",
  3704. "initial": "normal",
  3705. "appliesTo": "all elements, tree-abiding pseudo-elements, and page margin boxes",
  3706. "inherited": "no",
  3707. "percentages": "n/a",
  3708. "computedValue": "See prose below",
  3709. "canonicalOrder": "per grammar",
  3710. "animationType": "discrete",
  3711. "styleDeclaration": [
  3712. "content"
  3713. ],
  3714. "syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> | <attr()> ]+ ]? | <element()>",
  3715. "extended": [
  3716. "https://drafts.csswg.org/css-gcpm-3/"
  3717. ]
  3718. }
  3719. ],
  3720. [
  3721. "content-visibility",
  3722. {
  3723. "name": "content-visibility",
  3724. "href": "https://drafts.csswg.org/css-contain-2/#propdef-content-visibility",
  3725. "initial": "visible",
  3726. "appliesTo": "elements for which size containment can apply",
  3727. "inherited": "no",
  3728. "percentages": "n/a",
  3729. "computedValue": "as specified",
  3730. "canonicalOrder": "per grammar",
  3731. "animationType": "see § 4.1 Animating and Interpolating content-visibility",
  3732. "styleDeclaration": [
  3733. "content-visibility",
  3734. "contentVisibility"
  3735. ],
  3736. "syntax": "visible | auto | hidden",
  3737. "extended": []
  3738. }
  3739. ],
  3740. [
  3741. "continue",
  3742. {
  3743. "name": "continue",
  3744. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-continue",
  3745. "initial": "auto",
  3746. "appliesTo": "block containers and multicol containers",
  3747. "inherited": "no",
  3748. "percentages": "N/A",
  3749. "computedValue": "specified keyword",
  3750. "canonicalOrder": "per grammar",
  3751. "animationType": "discrete",
  3752. "styleDeclaration": [
  3753. "continue"
  3754. ],
  3755. "syntax": "auto | discard | collapse | -webkit-legacy | overflow | paginate | fragments",
  3756. "extended": [
  3757. "https://drafts.csswg.org/css-overflow-5/"
  3758. ]
  3759. }
  3760. ],
  3761. [
  3762. "corner-block-end-shape",
  3763. {
  3764. "name": "corner-block-end-shape",
  3765. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-block-end-shape",
  3766. "initial": "see individual properties",
  3767. "appliesTo": "see individual properties",
  3768. "inherited": "see individual properties",
  3769. "percentages": "see individual properties",
  3770. "computedValue": "see individual properties",
  3771. "animationType": "see individual properties",
  3772. "canonicalOrder": "per grammar",
  3773. "styleDeclaration": [
  3774. "corner-block-end-shape",
  3775. "cornerBlockEndShape"
  3776. ],
  3777. "syntax": "<'corner-top-left-shape'>{1,2}",
  3778. "extended": []
  3779. }
  3780. ],
  3781. [
  3782. "corner-block-start-shape",
  3783. {
  3784. "name": "corner-block-start-shape",
  3785. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-block-start-shape",
  3786. "initial": "see individual properties",
  3787. "appliesTo": "see individual properties",
  3788. "inherited": "see individual properties",
  3789. "percentages": "see individual properties",
  3790. "computedValue": "see individual properties",
  3791. "animationType": "see individual properties",
  3792. "canonicalOrder": "per grammar",
  3793. "styleDeclaration": [
  3794. "corner-block-start-shape",
  3795. "cornerBlockStartShape"
  3796. ],
  3797. "syntax": "<'corner-top-left-shape'>{1,2}",
  3798. "extended": []
  3799. }
  3800. ],
  3801. [
  3802. "corner-bottom-left-shape",
  3803. {
  3804. "name": "corner-bottom-left-shape",
  3805. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-bottom-left-shape",
  3806. "initial": "round",
  3807. "appliesTo": "all elements where border-radius can apply",
  3808. "inherited": "no",
  3809. "percentages": "n/a",
  3810. "computedValue": "the corresponding superellipse() value",
  3811. "canonicalOrder": "per grammar",
  3812. "animationType": "see superellipse interpolation",
  3813. "logicalPropertyGroup": "corner-shape",
  3814. "styleDeclaration": [
  3815. "corner-bottom-left-shape",
  3816. "cornerBottomLeftShape"
  3817. ],
  3818. "syntax": "<corner-shape-value>",
  3819. "extended": []
  3820. }
  3821. ],
  3822. [
  3823. "corner-bottom-right-shape",
  3824. {
  3825. "name": "corner-bottom-right-shape",
  3826. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-bottom-right-shape",
  3827. "initial": "round",
  3828. "appliesTo": "all elements where border-radius can apply",
  3829. "inherited": "no",
  3830. "percentages": "n/a",
  3831. "computedValue": "the corresponding superellipse() value",
  3832. "canonicalOrder": "per grammar",
  3833. "animationType": "see superellipse interpolation",
  3834. "logicalPropertyGroup": "corner-shape",
  3835. "styleDeclaration": [
  3836. "corner-bottom-right-shape",
  3837. "cornerBottomRightShape"
  3838. ],
  3839. "syntax": "<corner-shape-value>",
  3840. "extended": []
  3841. }
  3842. ],
  3843. [
  3844. "corner-bottom-shape",
  3845. {
  3846. "name": "corner-bottom-shape",
  3847. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-bottom-shape",
  3848. "initial": "see individual properties",
  3849. "appliesTo": "see individual properties",
  3850. "inherited": "see individual properties",
  3851. "percentages": "see individual properties",
  3852. "computedValue": "see individual properties",
  3853. "animationType": "see individual properties",
  3854. "canonicalOrder": "per grammar",
  3855. "styleDeclaration": [
  3856. "corner-bottom-shape",
  3857. "cornerBottomShape"
  3858. ],
  3859. "syntax": "<'corner-top-left-shape'>{1,2}",
  3860. "extended": []
  3861. }
  3862. ],
  3863. [
  3864. "corner-end-end-shape",
  3865. {
  3866. "name": "corner-end-end-shape",
  3867. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-end-end-shape",
  3868. "initial": "round",
  3869. "appliesTo": "all elements where border-radius can apply",
  3870. "inherited": "no",
  3871. "percentages": "n/a",
  3872. "computedValue": "the corresponding superellipse() value",
  3873. "canonicalOrder": "per grammar",
  3874. "animationType": "see superellipse interpolation",
  3875. "logicalPropertyGroup": "corner-shape",
  3876. "styleDeclaration": [
  3877. "corner-end-end-shape",
  3878. "cornerEndEndShape"
  3879. ],
  3880. "syntax": "<corner-shape-value>",
  3881. "extended": []
  3882. }
  3883. ],
  3884. [
  3885. "corner-end-start-shape",
  3886. {
  3887. "name": "corner-end-start-shape",
  3888. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-end-start-shape",
  3889. "initial": "round",
  3890. "appliesTo": "all elements where border-radius can apply",
  3891. "inherited": "no",
  3892. "percentages": "n/a",
  3893. "computedValue": "the corresponding superellipse() value",
  3894. "canonicalOrder": "per grammar",
  3895. "animationType": "see superellipse interpolation",
  3896. "logicalPropertyGroup": "corner-shape",
  3897. "styleDeclaration": [
  3898. "corner-end-start-shape",
  3899. "cornerEndStartShape"
  3900. ],
  3901. "syntax": "<corner-shape-value>",
  3902. "extended": []
  3903. }
  3904. ],
  3905. [
  3906. "corner-inline-end-shape",
  3907. {
  3908. "name": "corner-inline-end-shape",
  3909. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-inline-end-shape",
  3910. "initial": "see individual properties",
  3911. "appliesTo": "see individual properties",
  3912. "inherited": "see individual properties",
  3913. "percentages": "see individual properties",
  3914. "computedValue": "see individual properties",
  3915. "animationType": "see individual properties",
  3916. "canonicalOrder": "per grammar",
  3917. "styleDeclaration": [
  3918. "corner-inline-end-shape",
  3919. "cornerInlineEndShape"
  3920. ],
  3921. "syntax": "<'corner-top-left-shape'>{1,2}",
  3922. "extended": []
  3923. }
  3924. ],
  3925. [
  3926. "corner-inline-start-shape",
  3927. {
  3928. "name": "corner-inline-start-shape",
  3929. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-inline-start-shape",
  3930. "initial": "see individual properties",
  3931. "appliesTo": "see individual properties",
  3932. "inherited": "see individual properties",
  3933. "percentages": "see individual properties",
  3934. "computedValue": "see individual properties",
  3935. "animationType": "see individual properties",
  3936. "canonicalOrder": "per grammar",
  3937. "styleDeclaration": [
  3938. "corner-inline-start-shape",
  3939. "cornerInlineStartShape"
  3940. ],
  3941. "syntax": "<'corner-top-left-shape'>{1,2}",
  3942. "extended": []
  3943. }
  3944. ],
  3945. [
  3946. "corner-left-shape",
  3947. {
  3948. "name": "corner-left-shape",
  3949. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-left-shape",
  3950. "initial": "see individual properties",
  3951. "appliesTo": "see individual properties",
  3952. "inherited": "see individual properties",
  3953. "percentages": "see individual properties",
  3954. "computedValue": "see individual properties",
  3955. "animationType": "see individual properties",
  3956. "canonicalOrder": "per grammar",
  3957. "styleDeclaration": [
  3958. "corner-left-shape",
  3959. "cornerLeftShape"
  3960. ],
  3961. "syntax": "<'corner-top-left-shape'>{1,2}",
  3962. "extended": []
  3963. }
  3964. ],
  3965. [
  3966. "corner-right-shape",
  3967. {
  3968. "name": "corner-right-shape",
  3969. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-right-shape",
  3970. "initial": "see individual properties",
  3971. "appliesTo": "see individual properties",
  3972. "inherited": "see individual properties",
  3973. "percentages": "see individual properties",
  3974. "computedValue": "see individual properties",
  3975. "animationType": "see individual properties",
  3976. "canonicalOrder": "per grammar",
  3977. "styleDeclaration": [
  3978. "corner-right-shape",
  3979. "cornerRightShape"
  3980. ],
  3981. "syntax": "<'corner-top-left-shape'>{1,2}",
  3982. "extended": []
  3983. }
  3984. ],
  3985. [
  3986. "corner-shape",
  3987. {
  3988. "name": "corner-shape",
  3989. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-shape",
  3990. "initial": "round",
  3991. "appliesTo": "all elements where border-radius can apply",
  3992. "inherited": "no",
  3993. "percentages": "see individual properties",
  3994. "computedValue": "see individual properties",
  3995. "animationType": "see individual properties",
  3996. "canonicalOrder": "per grammar",
  3997. "styleDeclaration": [
  3998. "corner-shape",
  3999. "cornerShape"
  4000. ],
  4001. "syntax": "<'corner-top-left-shape'>{1,4}",
  4002. "extended": []
  4003. }
  4004. ],
  4005. [
  4006. "corner-start-end-shape",
  4007. {
  4008. "name": "corner-start-end-shape",
  4009. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-start-end-shape",
  4010. "initial": "round",
  4011. "appliesTo": "all elements where border-radius can apply",
  4012. "inherited": "no",
  4013. "percentages": "n/a",
  4014. "computedValue": "the corresponding superellipse() value",
  4015. "canonicalOrder": "per grammar",
  4016. "animationType": "see superellipse interpolation",
  4017. "logicalPropertyGroup": "corner-shape",
  4018. "styleDeclaration": [
  4019. "corner-start-end-shape",
  4020. "cornerStartEndShape"
  4021. ],
  4022. "syntax": "<corner-shape-value>",
  4023. "extended": []
  4024. }
  4025. ],
  4026. [
  4027. "corner-start-start-shape",
  4028. {
  4029. "name": "corner-start-start-shape",
  4030. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-start-start-shape",
  4031. "initial": "round",
  4032. "appliesTo": "all elements where border-radius can apply",
  4033. "inherited": "no",
  4034. "percentages": "n/a",
  4035. "computedValue": "the corresponding superellipse() value",
  4036. "canonicalOrder": "per grammar",
  4037. "animationType": "see superellipse interpolation",
  4038. "logicalPropertyGroup": "corner-shape",
  4039. "styleDeclaration": [
  4040. "corner-start-start-shape",
  4041. "cornerStartStartShape"
  4042. ],
  4043. "syntax": "<corner-shape-value>",
  4044. "extended": []
  4045. }
  4046. ],
  4047. [
  4048. "corner-top-left-shape",
  4049. {
  4050. "name": "corner-top-left-shape",
  4051. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-top-left-shape",
  4052. "initial": "round",
  4053. "appliesTo": "all elements where border-radius can apply",
  4054. "inherited": "no",
  4055. "percentages": "n/a",
  4056. "computedValue": "the corresponding superellipse() value",
  4057. "canonicalOrder": "per grammar",
  4058. "animationType": "see superellipse interpolation",
  4059. "logicalPropertyGroup": "corner-shape",
  4060. "styleDeclaration": [
  4061. "corner-top-left-shape",
  4062. "cornerTopLeftShape"
  4063. ],
  4064. "syntax": "<corner-shape-value>",
  4065. "extended": []
  4066. }
  4067. ],
  4068. [
  4069. "corner-top-right-shape",
  4070. {
  4071. "name": "corner-top-right-shape",
  4072. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-top-right-shape",
  4073. "initial": "round",
  4074. "appliesTo": "all elements where border-radius can apply",
  4075. "inherited": "no",
  4076. "percentages": "n/a",
  4077. "computedValue": "the corresponding superellipse() value",
  4078. "canonicalOrder": "per grammar",
  4079. "animationType": "see superellipse interpolation",
  4080. "logicalPropertyGroup": "corner-shape",
  4081. "styleDeclaration": [
  4082. "corner-top-right-shape",
  4083. "cornerTopRightShape"
  4084. ],
  4085. "syntax": "<corner-shape-value>",
  4086. "extended": []
  4087. }
  4088. ],
  4089. [
  4090. "corner-top-shape",
  4091. {
  4092. "name": "corner-top-shape",
  4093. "href": "https://drafts.csswg.org/css-borders-4/#propdef-corner-top-shape",
  4094. "initial": "see individual properties",
  4095. "appliesTo": "see individual properties",
  4096. "inherited": "see individual properties",
  4097. "percentages": "see individual properties",
  4098. "computedValue": "see individual properties",
  4099. "animationType": "see individual properties",
  4100. "canonicalOrder": "per grammar",
  4101. "styleDeclaration": [
  4102. "corner-top-shape",
  4103. "cornerTopShape"
  4104. ],
  4105. "syntax": "<'corner-top-left-shape'>{1,2}",
  4106. "extended": []
  4107. }
  4108. ],
  4109. [
  4110. "counter-increment",
  4111. {
  4112. "name": "counter-increment",
  4113. "href": "https://drafts.csswg.org/css-lists-3/#propdef-counter-increment",
  4114. "initial": "none",
  4115. "appliesTo": "all elements",
  4116. "inherited": "no",
  4117. "percentages": "n/a",
  4118. "computedValue": "the keyword none or a list, each item an identifier paired with an integer",
  4119. "canonicalOrder": "per grammar",
  4120. "animationType": "by computed value type",
  4121. "styleDeclaration": [
  4122. "counter-increment",
  4123. "counterIncrement"
  4124. ],
  4125. "syntax": "[ <counter-name> <integer>? ]+ | none",
  4126. "extended": []
  4127. }
  4128. ],
  4129. [
  4130. "counter-reset",
  4131. {
  4132. "name": "counter-reset",
  4133. "href": "https://drafts.csswg.org/css-lists-3/#propdef-counter-reset",
  4134. "initial": "none",
  4135. "appliesTo": "all elements",
  4136. "inherited": "no",
  4137. "percentages": "n/a",
  4138. "computedValue": "the keyword none or a list, each item an identifier or a reversed() function paired with an integer",
  4139. "canonicalOrder": "per grammar",
  4140. "animationType": "by computed value type",
  4141. "styleDeclaration": [
  4142. "counter-reset",
  4143. "counterReset"
  4144. ],
  4145. "syntax": "[ <counter-name> <integer>? | <reversed-counter-name> <integer>? ]+ | none",
  4146. "extended": []
  4147. }
  4148. ],
  4149. [
  4150. "counter-set",
  4151. {
  4152. "name": "counter-set",
  4153. "href": "https://drafts.csswg.org/css-lists-3/#propdef-counter-set",
  4154. "initial": "none",
  4155. "appliesTo": "all elements",
  4156. "inherited": "no",
  4157. "percentages": "n/a",
  4158. "computedValue": "the keyword none or a list, each item an identifier paired with an integer",
  4159. "canonicalOrder": "per grammar",
  4160. "animationType": "by computed value type",
  4161. "styleDeclaration": [
  4162. "counter-set",
  4163. "counterSet"
  4164. ],
  4165. "syntax": "[ <counter-name> <integer>? ]+ | none",
  4166. "extended": []
  4167. }
  4168. ],
  4169. [
  4170. "cue",
  4171. {
  4172. "name": "cue",
  4173. "href": "https://drafts.csswg.org/css-speech-1/#propdef-cue",
  4174. "initial": "see individual properties",
  4175. "appliesTo": "all elements",
  4176. "inherited": "no",
  4177. "percentages": "N/A",
  4178. "computedValue": "see individual properties",
  4179. "canonicalOrder": "per grammar",
  4180. "styleDeclaration": [
  4181. "cue"
  4182. ],
  4183. "syntax": "<'cue-before'> <'cue-after'>?",
  4184. "extended": []
  4185. }
  4186. ],
  4187. [
  4188. "cue-after",
  4189. {
  4190. "name": "cue-after",
  4191. "href": "https://drafts.csswg.org/css-speech-1/#propdef-cue-after",
  4192. "initial": "none",
  4193. "appliesTo": "all elements",
  4194. "inherited": "no",
  4195. "percentages": "N/A",
  4196. "computedValue": "specified value",
  4197. "canonicalOrder": "per grammar",
  4198. "styleDeclaration": [
  4199. "cue-after",
  4200. "cueAfter"
  4201. ],
  4202. "syntax": "<uri> <decibel>? | none",
  4203. "extended": []
  4204. }
  4205. ],
  4206. [
  4207. "cue-before",
  4208. {
  4209. "name": "cue-before",
  4210. "href": "https://drafts.csswg.org/css-speech-1/#propdef-cue-before",
  4211. "initial": "none",
  4212. "appliesTo": "all elements",
  4213. "inherited": "no",
  4214. "percentages": "N/A",
  4215. "computedValue": "specified value",
  4216. "canonicalOrder": "per grammar",
  4217. "styleDeclaration": [
  4218. "cue-before",
  4219. "cueBefore"
  4220. ],
  4221. "syntax": "<uri> <decibel>? | none",
  4222. "extended": []
  4223. }
  4224. ],
  4225. [
  4226. "cursor",
  4227. {
  4228. "name": "cursor",
  4229. "href": "https://drafts.csswg.org/css-ui-4/#propdef-cursor",
  4230. "initial": "auto",
  4231. "appliesTo": "all elements",
  4232. "inherited": "yes",
  4233. "percentages": "N/A",
  4234. "computedValue": "as specified, except with any relative URLs converted to absolute",
  4235. "canonicalOrder": "per grammar",
  4236. "animationType": "discrete",
  4237. "styleDeclaration": [
  4238. "cursor"
  4239. ],
  4240. "syntax": "[<cursor-image>,]* <cursor-predefined>",
  4241. "extended": []
  4242. }
  4243. ],
  4244. [
  4245. "direction",
  4246. {
  4247. "name": "direction",
  4248. "href": "https://drafts.csswg.org/css-writing-modes-4/#propdef-direction",
  4249. "initial": "ltr",
  4250. "appliesTo": "all elements",
  4251. "inherited": "yes",
  4252. "percentages": "n/a",
  4253. "computedValue": "specified value",
  4254. "canonicalOrder": "n/a",
  4255. "animationType": "not animatable",
  4256. "styleDeclaration": [
  4257. "direction"
  4258. ],
  4259. "syntax": "ltr | rtl",
  4260. "extended": []
  4261. }
  4262. ],
  4263. [
  4264. "display",
  4265. {
  4266. "name": "display",
  4267. "href": "https://drafts.csswg.org/css-display-4/#propdef-display",
  4268. "initial": "inline",
  4269. "appliesTo": "all elements",
  4270. "inherited": "no",
  4271. "percentages": "n/a",
  4272. "computedValue": "a pair of keywords representing the inner and outer display types plus optional list-item flag, or a <display-internal> or <display-box> keyword; see prose in a variety of specs for computation rules",
  4273. "canonicalOrder": "per grammar",
  4274. "animationType": "see § 2.9 Animating and Interpolating display",
  4275. "styleDeclaration": [
  4276. "display"
  4277. ],
  4278. "syntax": "[ <display-outside> || <display-inside> ] | <display-listitem> | <display-internal> | <display-box> | <display-legacy> | <display-outside> || [ <display-inside> | math ]",
  4279. "extended": [
  4280. "https://w3c.github.io/mathml-core/"
  4281. ]
  4282. }
  4283. ],
  4284. [
  4285. "dominant-baseline",
  4286. {
  4287. "name": "dominant-baseline",
  4288. "href": "https://drafts.csswg.org/css-inline-3/#propdef-dominant-baseline",
  4289. "initial": "auto",
  4290. "appliesTo": "block containers, inline boxes, table rows, grid containers, flex containers, and SVG text content elements",
  4291. "inherited": "yes",
  4292. "percentages": "N/A",
  4293. "computedValue": "specified keyword",
  4294. "canonicalOrder": "per grammar",
  4295. "animationType": "discrete",
  4296. "styleDeclaration": [
  4297. "dominant-baseline",
  4298. "dominantBaseline"
  4299. ],
  4300. "syntax": "auto | text-bottom | alphabetic | ideographic | middle | central | mathematical | hanging | text-top",
  4301. "extended": []
  4302. }
  4303. ],
  4304. [
  4305. "dynamic-range-limit",
  4306. {
  4307. "name": "dynamic-range-limit",
  4308. "href": "https://drafts.csswg.org/css-color-hdr-1/#propdef-dynamic-range-limit",
  4309. "initial": "no-limit",
  4310. "appliesTo": "all elements",
  4311. "inherited": "yes",
  4312. "percentages": "n/a",
  4313. "computedValue": "see Computed Value for dynamic-range-limit",
  4314. "canonicalOrder": "per grammar",
  4315. "animationType": "by dynamic-range-limit-mix()",
  4316. "styleDeclaration": [
  4317. "dynamic-range-limit",
  4318. "dynamicRangeLimit"
  4319. ],
  4320. "syntax": "standard | no-limit | constrained | <dynamic-range-limit-mix()>",
  4321. "extended": []
  4322. }
  4323. ],
  4324. [
  4325. "empty-cells",
  4326. {
  4327. "name": "empty-cells",
  4328. "href": "https://drafts.csswg.org/css-tables-3/#propdef-empty-cells",
  4329. "initial": "show",
  4330. "appliesTo": "table-cell boxes",
  4331. "inherited": "yes",
  4332. "percentages": "n/a",
  4333. "computedValue": "specified keyword",
  4334. "canonicalOrder": "per grammar",
  4335. "animationType": "discrete",
  4336. "styleDeclaration": [
  4337. "empty-cells",
  4338. "emptyCells"
  4339. ],
  4340. "syntax": "show | hide",
  4341. "extended": []
  4342. }
  4343. ],
  4344. [
  4345. "fill",
  4346. {
  4347. "name": "fill",
  4348. "href": "https://svgwg.org/svg2-draft/painting.html#FillProperty",
  4349. "initial": "black",
  4350. "appliesTo": "shapes and text content elements",
  4351. "inherited": "yes",
  4352. "percentages": "N/A",
  4353. "media": "visual",
  4354. "computedValue": "as specified, but with <color> values computed and <url> values made absolute",
  4355. "animationType": "by computed value",
  4356. "styleDeclaration": [
  4357. "fill"
  4358. ],
  4359. "syntax": "<paint>",
  4360. "extended": []
  4361. }
  4362. ],
  4363. [
  4364. "fill-break",
  4365. {
  4366. "name": "fill-break",
  4367. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-break",
  4368. "initial": "bounding-box",
  4369. "appliesTo": "all elements",
  4370. "inherited": "yes?",
  4371. "percentages": "N/A",
  4372. "computedValue": "as specified",
  4373. "canonicalOrder": "per grammar",
  4374. "animationType": "discrete",
  4375. "media": "visual",
  4376. "styleDeclaration": [
  4377. "fill-break",
  4378. "fillBreak"
  4379. ],
  4380. "syntax": "bounding-box | slice | clone",
  4381. "extended": []
  4382. }
  4383. ],
  4384. [
  4385. "fill-color",
  4386. {
  4387. "name": "fill-color",
  4388. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-color",
  4389. "initial": "currentcolor",
  4390. "appliesTo": "text and SVG shapes",
  4391. "inherited": "yes",
  4392. "percentages": "N/A",
  4393. "computedValue": "the computed color",
  4394. "canonicalOrder": "per grammar",
  4395. "animationType": "by computed value",
  4396. "media": "visual",
  4397. "styleDeclaration": [
  4398. "fill-color",
  4399. "fillColor"
  4400. ],
  4401. "syntax": "<color>",
  4402. "extended": []
  4403. }
  4404. ],
  4405. [
  4406. "fill-image",
  4407. {
  4408. "name": "fill-image",
  4409. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-image",
  4410. "initial": "none",
  4411. "appliesTo": "text and SVG shapes",
  4412. "inherited": "yes",
  4413. "percentages": "N/A",
  4414. "computedValue": "as specified, with any <image> computed",
  4415. "canonicalOrder": "per grammar",
  4416. "animationType": "repeatable list",
  4417. "media": "visual",
  4418. "styleDeclaration": [
  4419. "fill-image",
  4420. "fillImage"
  4421. ],
  4422. "syntax": "<paint>#",
  4423. "extended": []
  4424. }
  4425. ],
  4426. [
  4427. "fill-opacity",
  4428. {
  4429. "name": "fill-opacity",
  4430. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-opacity",
  4431. "initial": "1",
  4432. "appliesTo": "text and SVG shapes",
  4433. "inherited": "yes",
  4434. "percentages": "N/A",
  4435. "computedValue": "the specified value converted to a <number>, clamped to the range [0,1]",
  4436. "canonicalOrder": "per grammar",
  4437. "animationType": "by computed value",
  4438. "media": "visual",
  4439. "styleDeclaration": [
  4440. "fill-opacity",
  4441. "fillOpacity"
  4442. ],
  4443. "syntax": "<'opacity'>",
  4444. "extended": []
  4445. }
  4446. ],
  4447. [
  4448. "fill-origin",
  4449. {
  4450. "name": "fill-origin",
  4451. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-origin",
  4452. "initial": "match-parent",
  4453. "appliesTo": "all elements",
  4454. "inherited": "no",
  4455. "percentages": "N/A",
  4456. "computedValue": "as specified",
  4457. "canonicalOrder": "per grammar",
  4458. "animationType": "discrete",
  4459. "media": "visual",
  4460. "styleDeclaration": [
  4461. "fill-origin",
  4462. "fillOrigin"
  4463. ],
  4464. "syntax": "match-parent | fill-box | stroke-box | content-box | padding-box | border-box",
  4465. "extended": []
  4466. }
  4467. ],
  4468. [
  4469. "fill-position",
  4470. {
  4471. "name": "fill-position",
  4472. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-position",
  4473. "initial": "0% 0%",
  4474. "appliesTo": "text and SVG shapes",
  4475. "inherited": "yes",
  4476. "percentages": "n/a",
  4477. "computedValue": "A list, each item consisting of: a pair of offsets (horizontal and vertical) from the top left origin each given as a combination of an absolute length and a percentage",
  4478. "canonicalOrder": "per grammar",
  4479. "animationType": "repeatable list",
  4480. "media": "visual",
  4481. "styleDeclaration": [
  4482. "fill-position",
  4483. "fillPosition"
  4484. ],
  4485. "syntax": "<position>#",
  4486. "extended": []
  4487. }
  4488. ],
  4489. [
  4490. "fill-repeat",
  4491. {
  4492. "name": "fill-repeat",
  4493. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-repeat",
  4494. "initial": "repeat",
  4495. "appliesTo": "text and SVG shapes",
  4496. "inherited": "yes",
  4497. "percentages": "n/a",
  4498. "computedValue": "A list, each item consisting of: two keywords, one per dimension",
  4499. "canonicalOrder": "per grammar",
  4500. "animationType": "discrete",
  4501. "media": "visual",
  4502. "styleDeclaration": [
  4503. "fill-repeat",
  4504. "fillRepeat"
  4505. ],
  4506. "syntax": "<repeat-style>#",
  4507. "extended": []
  4508. }
  4509. ],
  4510. [
  4511. "fill-rule",
  4512. {
  4513. "name": "fill-rule",
  4514. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-rule",
  4515. "initial": "nonzero",
  4516. "appliesTo": "SVG shapes",
  4517. "inherited": "yes",
  4518. "percentages": "N/A",
  4519. "computedValue": "as specified",
  4520. "canonicalOrder": "per grammar",
  4521. "animationType": "discrete",
  4522. "media": "visual",
  4523. "styleDeclaration": [
  4524. "fill-rule",
  4525. "fillRule"
  4526. ],
  4527. "syntax": "nonzero | evenodd",
  4528. "extended": []
  4529. }
  4530. ],
  4531. [
  4532. "fill-size",
  4533. {
  4534. "name": "fill-size",
  4535. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-fill-size",
  4536. "initial": "auto",
  4537. "appliesTo": "text and SVG shapes",
  4538. "inherited": "yes",
  4539. "percentages": "n/a",
  4540. "computedValue": "as specified, but with lengths made absolute and omitted auto keywords filled in",
  4541. "canonicalOrder": "per grammar",
  4542. "animationType": "repeatable list",
  4543. "media": "visual",
  4544. "styleDeclaration": [
  4545. "fill-size",
  4546. "fillSize"
  4547. ],
  4548. "syntax": "<bg-size>#",
  4549. "extended": []
  4550. }
  4551. ],
  4552. [
  4553. "filter",
  4554. {
  4555. "name": "filter",
  4556. "href": "https://drafts.fxtf.org/filter-effects-1/#propdef-filter",
  4557. "initial": "none",
  4558. "appliesTo": "All elements. In SVG, it applies to container elements without the defs element, all graphics elements and the use element.",
  4559. "inherited": "no",
  4560. "percentages": "n/a",
  4561. "computedValue": "as specified",
  4562. "canonicalOrder": "per grammar",
  4563. "animationType": "See prose in Animation of Filters.",
  4564. "media": "visual",
  4565. "styleDeclaration": [
  4566. "filter"
  4567. ],
  4568. "syntax": "none | <filter-value-list>",
  4569. "extended": []
  4570. }
  4571. ],
  4572. [
  4573. "flex",
  4574. {
  4575. "name": "flex",
  4576. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex",
  4577. "initial": "0 1 auto",
  4578. "appliesTo": "flex items",
  4579. "inherited": "no",
  4580. "percentages": "see individual properties",
  4581. "computedValue": "see individual properties",
  4582. "animationType": "by computed value type",
  4583. "canonicalOrder": "per grammar",
  4584. "styleDeclaration": [
  4585. "flex"
  4586. ],
  4587. "syntax": "none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]",
  4588. "extended": []
  4589. }
  4590. ],
  4591. [
  4592. "flex-basis",
  4593. {
  4594. "name": "flex-basis",
  4595. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-basis",
  4596. "initial": "auto",
  4597. "appliesTo": "flex items",
  4598. "inherited": "no",
  4599. "percentages": "relative to the flex container’s inner main size",
  4600. "computedValue": "specified keyword or a computed <length-percentage> value",
  4601. "canonicalOrder": "per grammar",
  4602. "animationType": "by computed value type",
  4603. "styleDeclaration": [
  4604. "flex-basis",
  4605. "flexBasis"
  4606. ],
  4607. "syntax": "content | <'width'>",
  4608. "extended": []
  4609. }
  4610. ],
  4611. [
  4612. "flex-direction",
  4613. {
  4614. "name": "flex-direction",
  4615. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-direction",
  4616. "initial": "row",
  4617. "appliesTo": "flex containers",
  4618. "inherited": "no",
  4619. "percentages": "n/a",
  4620. "computedValue": "specified keyword",
  4621. "canonicalOrder": "per grammar",
  4622. "animationType": "discrete",
  4623. "styleDeclaration": [
  4624. "flex-direction",
  4625. "flexDirection"
  4626. ],
  4627. "syntax": "row | row-reverse | column | column-reverse",
  4628. "extended": []
  4629. }
  4630. ],
  4631. [
  4632. "flex-flow",
  4633. {
  4634. "name": "flex-flow",
  4635. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-flow",
  4636. "initial": "see individual properties",
  4637. "appliesTo": "see individual properties",
  4638. "inherited": "see individual properties",
  4639. "percentages": "see individual properties",
  4640. "computedValue": "see individual properties",
  4641. "animationType": "see individual properties",
  4642. "canonicalOrder": "per grammar",
  4643. "styleDeclaration": [
  4644. "flex-flow",
  4645. "flexFlow"
  4646. ],
  4647. "syntax": "<'flex-direction'> || <'flex-wrap'>",
  4648. "extended": []
  4649. }
  4650. ],
  4651. [
  4652. "flex-grow",
  4653. {
  4654. "name": "flex-grow",
  4655. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-grow",
  4656. "initial": "0",
  4657. "appliesTo": "flex items",
  4658. "inherited": "no",
  4659. "percentages": "n/a",
  4660. "computedValue": "specified number",
  4661. "canonicalOrder": "per grammar",
  4662. "animationType": "by computed value type",
  4663. "styleDeclaration": [
  4664. "flex-grow",
  4665. "flexGrow"
  4666. ],
  4667. "syntax": "<number [0,∞]>",
  4668. "extended": []
  4669. }
  4670. ],
  4671. [
  4672. "flex-shrink",
  4673. {
  4674. "name": "flex-shrink",
  4675. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-shrink",
  4676. "initial": "1",
  4677. "appliesTo": "flex items",
  4678. "inherited": "no",
  4679. "percentages": "n/a",
  4680. "computedValue": "specified value",
  4681. "canonicalOrder": "per grammar",
  4682. "animationType": "number",
  4683. "styleDeclaration": [
  4684. "flex-shrink",
  4685. "flexShrink"
  4686. ],
  4687. "syntax": "<number [0,∞]>",
  4688. "extended": []
  4689. }
  4690. ],
  4691. [
  4692. "flex-wrap",
  4693. {
  4694. "name": "flex-wrap",
  4695. "href": "https://drafts.csswg.org/css-flexbox-1/#propdef-flex-wrap",
  4696. "initial": "nowrap",
  4697. "appliesTo": "flex containers",
  4698. "inherited": "no",
  4699. "percentages": "n/a",
  4700. "computedValue": "specified keyword",
  4701. "canonicalOrder": "per grammar",
  4702. "animationType": "discrete",
  4703. "styleDeclaration": [
  4704. "flex-wrap",
  4705. "flexWrap"
  4706. ],
  4707. "syntax": "nowrap | wrap | wrap-reverse",
  4708. "extended": []
  4709. }
  4710. ],
  4711. [
  4712. "float",
  4713. {
  4714. "name": "float",
  4715. "href": "https://drafts.csswg.org/css-page-floats-3/#propdef-float",
  4716. "initial": "none",
  4717. "appliesTo": "all elements.",
  4718. "inherited": "no",
  4719. "percentages": "N/A",
  4720. "computedValue": "as specified",
  4721. "canonicalOrder": "per grammar",
  4722. "animationType": "by computed value type",
  4723. "styleDeclaration": [
  4724. "float"
  4725. ],
  4726. "syntax": "block-start | block-end | inline-start | inline-end | snap-block | <snap-block()> | snap-inline | <snap-inline()> | left | right | top | bottom | none | footnote",
  4727. "extended": [
  4728. "https://drafts.csswg.org/css-gcpm-3/"
  4729. ]
  4730. }
  4731. ],
  4732. [
  4733. "float-defer",
  4734. {
  4735. "name": "float-defer",
  4736. "href": "https://drafts.csswg.org/css-page-floats-3/#propdef-float-defer",
  4737. "initial": "none",
  4738. "appliesTo": "floats",
  4739. "inherited": "no",
  4740. "percentages": "N/A",
  4741. "computedValue": "specified keyword or integer",
  4742. "canonicalOrder": "per grammar",
  4743. "animationType": "discrete",
  4744. "styleDeclaration": [
  4745. "float-defer",
  4746. "floatDefer"
  4747. ],
  4748. "syntax": "<integer> | last | none",
  4749. "extended": []
  4750. }
  4751. ],
  4752. [
  4753. "float-offset",
  4754. {
  4755. "name": "float-offset",
  4756. "href": "https://drafts.csswg.org/css-page-floats-3/#propdef-float-offset",
  4757. "initial": "0",
  4758. "appliesTo": "floats",
  4759. "inherited": "no",
  4760. "percentages": "see prose",
  4761. "computedValue": "computed <length-percentage> value",
  4762. "canonicalOrder": "per grammar",
  4763. "animationType": "by computed value type",
  4764. "styleDeclaration": [
  4765. "float-offset",
  4766. "floatOffset"
  4767. ],
  4768. "syntax": "<length-percentage>",
  4769. "extended": []
  4770. }
  4771. ],
  4772. [
  4773. "float-reference",
  4774. {
  4775. "name": "float-reference",
  4776. "href": "https://drafts.csswg.org/css-page-floats-3/#propdef-float-reference",
  4777. "initial": "inline",
  4778. "appliesTo": "all elements.",
  4779. "inherited": "no",
  4780. "percentages": "N/A",
  4781. "computedValue": "specified keyword",
  4782. "canonicalOrder": "per grammar",
  4783. "animationType": "discrete",
  4784. "styleDeclaration": [
  4785. "float-reference",
  4786. "floatReference"
  4787. ],
  4788. "syntax": "inline | column | region | page",
  4789. "extended": []
  4790. }
  4791. ],
  4792. [
  4793. "flood-color",
  4794. {
  4795. "name": "flood-color",
  4796. "href": "https://drafts.fxtf.org/filter-effects-1/#propdef-flood-color",
  4797. "initial": "black",
  4798. "appliesTo": "feFlood and feDropShadow elements",
  4799. "inherited": "no",
  4800. "percentages": "n/a",
  4801. "computedValue": "as specified",
  4802. "canonicalOrder": "per grammar",
  4803. "animationType": "by computed value",
  4804. "media": "visual",
  4805. "styleDeclaration": [
  4806. "flood-color",
  4807. "floodColor"
  4808. ],
  4809. "syntax": "<color>",
  4810. "extended": []
  4811. }
  4812. ],
  4813. [
  4814. "flood-opacity",
  4815. {
  4816. "name": "flood-opacity",
  4817. "href": "https://drafts.fxtf.org/filter-effects-1/#propdef-flood-opacity",
  4818. "initial": "1",
  4819. "appliesTo": "feFlood and feDropShadow elements",
  4820. "inherited": "no",
  4821. "percentages": "n/a",
  4822. "computedValue": "the specified value converted to a number, clamped to the range [0,1]",
  4823. "canonicalOrder": "per grammar",
  4824. "animationType": "by computed value",
  4825. "media": "visual",
  4826. "styleDeclaration": [
  4827. "flood-opacity",
  4828. "floodOpacity"
  4829. ],
  4830. "syntax": "<'opacity'>",
  4831. "extended": []
  4832. }
  4833. ],
  4834. [
  4835. "flow-from",
  4836. {
  4837. "name": "flow-from",
  4838. "href": "https://drafts.csswg.org/css-regions-1/#propdef-flow-from",
  4839. "initial": "none",
  4840. "appliesTo": "Non-replaced block containers. This might be expanded in future versions of the specification to allow other types of containers to receive flow content.",
  4841. "inherited": "no",
  4842. "percentages": "n/a",
  4843. "computedValue": "as specified",
  4844. "canonicalOrder": "per grammar",
  4845. "animationType": "not animatable",
  4846. "styleDeclaration": [
  4847. "flow-from",
  4848. "flowFrom"
  4849. ],
  4850. "syntax": "<custom-ident> | none",
  4851. "extended": []
  4852. }
  4853. ],
  4854. [
  4855. "flow-into",
  4856. {
  4857. "name": "flow-into",
  4858. "href": "https://drafts.csswg.org/css-regions-1/#propdef-flow-into",
  4859. "initial": "none",
  4860. "appliesTo": "All elements, but not pseudo-elements such as ::first-line, ::first-letter, ::before or ::after.",
  4861. "inherited": "no",
  4862. "percentages": "n/a",
  4863. "computedValue": "as specified",
  4864. "canonicalOrder": "per grammar",
  4865. "animationType": "not animatable",
  4866. "styleDeclaration": [
  4867. "flow-into",
  4868. "flowInto"
  4869. ],
  4870. "syntax": "none | <custom-ident> [element | content]?",
  4871. "extended": []
  4872. }
  4873. ],
  4874. [
  4875. "font",
  4876. {
  4877. "name": "font",
  4878. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font",
  4879. "initial": "see individual properties",
  4880. "appliesTo": "all elements and text",
  4881. "inherited": "yes",
  4882. "percentages": "see individual properties",
  4883. "computedValue": "see individual properties",
  4884. "canonicalOrder": "per grammar",
  4885. "animationType": "see individual properties",
  4886. "styleDeclaration": [
  4887. "font"
  4888. ],
  4889. "syntax": "[ [ <'font-style'> || <font-variant-css2> || <'font-weight'> || <font-width-css3> ]? <'font-size'> [ / <'line-height'> ]? <'font-family'># ] | <system-family-name>",
  4890. "extended": []
  4891. }
  4892. ],
  4893. [
  4894. "font-family",
  4895. {
  4896. "name": "font-family",
  4897. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-family",
  4898. "initial": "depends on user agent",
  4899. "appliesTo": "all elements and text",
  4900. "inherited": "yes",
  4901. "percentages": "n/a",
  4902. "computedValue": "list, each item a string and/or <generic-family> keywords",
  4903. "canonicalOrder": "per grammar",
  4904. "animationType": "discrete",
  4905. "styleDeclaration": [
  4906. "font-family",
  4907. "fontFamily"
  4908. ],
  4909. "syntax": "[ <family-name> | <generic-family> ]#",
  4910. "extended": []
  4911. }
  4912. ],
  4913. [
  4914. "font-feature-settings",
  4915. {
  4916. "name": "font-feature-settings",
  4917. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-feature-settings",
  4918. "initial": "normal",
  4919. "appliesTo": "all elements and text",
  4920. "inherited": "yes",
  4921. "percentages": "n/a",
  4922. "computedValue": "as specified",
  4923. "canonicalOrder": "per grammar",
  4924. "animationType": "discrete",
  4925. "styleDeclaration": [
  4926. "font-feature-settings",
  4927. "fontFeatureSettings"
  4928. ],
  4929. "syntax": "normal | <feature-tag-value>#",
  4930. "extended": []
  4931. }
  4932. ],
  4933. [
  4934. "font-kerning",
  4935. {
  4936. "name": "font-kerning",
  4937. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-kerning",
  4938. "initial": "auto",
  4939. "appliesTo": "all elements and text",
  4940. "inherited": "yes",
  4941. "percentages": "n/a",
  4942. "computedValue": "as specified",
  4943. "canonicalOrder": "per grammar",
  4944. "animationType": "discrete",
  4945. "styleDeclaration": [
  4946. "font-kerning",
  4947. "fontKerning"
  4948. ],
  4949. "syntax": "auto | normal | none",
  4950. "extended": []
  4951. }
  4952. ],
  4953. [
  4954. "font-language-override",
  4955. {
  4956. "name": "font-language-override",
  4957. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-language-override",
  4958. "initial": "normal",
  4959. "appliesTo": "all elements and text",
  4960. "inherited": "yes",
  4961. "percentages": "N/A",
  4962. "computedValue": "specified string or the keyword none",
  4963. "canonicalOrder": "per grammar",
  4964. "animationType": "discrete",
  4965. "styleDeclaration": [
  4966. "font-language-override",
  4967. "fontLanguageOverride"
  4968. ],
  4969. "syntax": "normal | <string>",
  4970. "extended": []
  4971. }
  4972. ],
  4973. [
  4974. "font-optical-sizing",
  4975. {
  4976. "name": "font-optical-sizing",
  4977. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-optical-sizing",
  4978. "initial": "auto",
  4979. "appliesTo": "all elements and text",
  4980. "inherited": "yes",
  4981. "percentages": "n/a",
  4982. "computedValue": "specified keyword",
  4983. "canonicalOrder": "per grammar",
  4984. "animationType": "discrete",
  4985. "styleDeclaration": [
  4986. "font-optical-sizing",
  4987. "fontOpticalSizing"
  4988. ],
  4989. "syntax": "auto | none",
  4990. "extended": []
  4991. }
  4992. ],
  4993. [
  4994. "font-palette",
  4995. {
  4996. "name": "font-palette",
  4997. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-palette",
  4998. "initial": "normal",
  4999. "appliesTo": "all elements and text",
  5000. "inherited": "yes",
  5001. "percentages": "N/a",
  5002. "computedValue": "specified keyword, identifier or <palette-mix()> function. <palette-mix()> must be simplified to a single keyword or identifier if resulting palette is equivalent.",
  5003. "canonicalOrder": "per grammar",
  5004. "animationType": "by computed value",
  5005. "styleDeclaration": [
  5006. "font-palette",
  5007. "fontPalette"
  5008. ],
  5009. "syntax": "normal | light | dark | <palette-identifier> | <palette-mix()>",
  5010. "extended": []
  5011. }
  5012. ],
  5013. [
  5014. "font-size",
  5015. {
  5016. "name": "font-size",
  5017. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-size",
  5018. "initial": "medium",
  5019. "appliesTo": "all elements and text",
  5020. "inherited": "yes",
  5021. "percentages": "refer to parent element’s font size",
  5022. "computedValue": "an absolute length",
  5023. "canonicalOrder": "per grammar",
  5024. "animationType": "by computed value type",
  5025. "styleDeclaration": [
  5026. "font-size",
  5027. "fontSize"
  5028. ],
  5029. "syntax": "<absolute-size> | <relative-size> | <length-percentage [0,∞]> | math",
  5030. "extended": []
  5031. }
  5032. ],
  5033. [
  5034. "font-size-adjust",
  5035. {
  5036. "name": "font-size-adjust",
  5037. "href": "https://drafts.csswg.org/css-fonts-5/#propdef-font-size-adjust",
  5038. "initial": "none",
  5039. "appliesTo": "all elements and text",
  5040. "inherited": "yes",
  5041. "percentages": "N/A",
  5042. "computedValue": "the keyword none, or a pair of a metric keyword and a <number>",
  5043. "canonicalOrder": "per grammar",
  5044. "animationType": "discrete if the keywords differ, otherwise by computed value type",
  5045. "styleDeclaration": [
  5046. "font-size-adjust",
  5047. "fontSizeAdjust"
  5048. ],
  5049. "syntax": "none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number [0,∞]> ]",
  5050. "extended": []
  5051. }
  5052. ],
  5053. [
  5054. "font-stretch",
  5055. {
  5056. "name": "font-stretch",
  5057. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-stretch",
  5058. "legacyAliasOf": "font-width",
  5059. "styleDeclaration": [
  5060. "font-stretch",
  5061. "fontStretch"
  5062. ],
  5063. "extended": [],
  5064. "syntax": "normal | <percentage [0,∞]> | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded"
  5065. }
  5066. ],
  5067. [
  5068. "font-style",
  5069. {
  5070. "name": "font-style",
  5071. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-style",
  5072. "initial": "normal",
  5073. "appliesTo": "all elements and text",
  5074. "inherited": "yes",
  5075. "percentages": "n/a",
  5076. "computedValue": "the keyword specified, plus angle in degrees if specified",
  5077. "canonicalOrder": "per grammar",
  5078. "animationType": "by computed value type;normal animates as oblique 0deg",
  5079. "styleDeclaration": [
  5080. "font-style",
  5081. "fontStyle"
  5082. ],
  5083. "syntax": "normal | italic | left | right | oblique <angle [-90deg,90deg]>?",
  5084. "extended": []
  5085. }
  5086. ],
  5087. [
  5088. "font-synthesis",
  5089. {
  5090. "name": "font-synthesis",
  5091. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis",
  5092. "initial": "weight style small-caps position",
  5093. "appliesTo": "all elements and text",
  5094. "inherited": "yes",
  5095. "percentages": "N/A",
  5096. "computedValue": "specified keyword(s)",
  5097. "canonicalOrder": "per grammar",
  5098. "animationType": "discrete",
  5099. "styleDeclaration": [
  5100. "font-synthesis",
  5101. "fontSynthesis"
  5102. ],
  5103. "syntax": "none | [ weight || style || small-caps || position]",
  5104. "extended": []
  5105. }
  5106. ],
  5107. [
  5108. "font-synthesis-position",
  5109. {
  5110. "name": "font-synthesis-position",
  5111. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-position",
  5112. "initial": "auto",
  5113. "appliesTo": "all elements and text",
  5114. "inherited": "yes",
  5115. "percentages": "N/A",
  5116. "computedValue": "specified keyword",
  5117. "canonicalOrder": "per grammar",
  5118. "animationType": "discrete",
  5119. "styleDeclaration": [
  5120. "font-synthesis-position",
  5121. "fontSynthesisPosition"
  5122. ],
  5123. "syntax": "auto | none",
  5124. "extended": []
  5125. }
  5126. ],
  5127. [
  5128. "font-synthesis-small-caps",
  5129. {
  5130. "name": "font-synthesis-small-caps",
  5131. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-small-caps",
  5132. "initial": "auto",
  5133. "appliesTo": "all elements and text",
  5134. "inherited": "yes",
  5135. "percentages": "N/A",
  5136. "computedValue": "specified keyword",
  5137. "canonicalOrder": "per grammar",
  5138. "animationType": "discrete",
  5139. "styleDeclaration": [
  5140. "font-synthesis-small-caps",
  5141. "fontSynthesisSmallCaps"
  5142. ],
  5143. "syntax": "auto | none",
  5144. "extended": []
  5145. }
  5146. ],
  5147. [
  5148. "font-synthesis-style",
  5149. {
  5150. "name": "font-synthesis-style",
  5151. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-style",
  5152. "initial": "auto",
  5153. "appliesTo": "all elements and text",
  5154. "inherited": "yes",
  5155. "percentages": "N/A",
  5156. "computedValue": "specified keyword",
  5157. "canonicalOrder": "per grammar",
  5158. "animationType": "discrete",
  5159. "media": "visual",
  5160. "styleDeclaration": [
  5161. "font-synthesis-style",
  5162. "fontSynthesisStyle"
  5163. ],
  5164. "syntax": "auto | none | oblique-only",
  5165. "extended": []
  5166. }
  5167. ],
  5168. [
  5169. "font-synthesis-weight",
  5170. {
  5171. "name": "font-synthesis-weight",
  5172. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-synthesis-weight",
  5173. "initial": "auto",
  5174. "appliesTo": "all elements and text",
  5175. "inherited": "yes",
  5176. "percentages": "N/A",
  5177. "computedValue": "specified keyword",
  5178. "canonicalOrder": "per grammar",
  5179. "animationType": "discrete",
  5180. "media": "visual",
  5181. "styleDeclaration": [
  5182. "font-synthesis-weight",
  5183. "fontSynthesisWeight"
  5184. ],
  5185. "syntax": "auto | none",
  5186. "extended": []
  5187. }
  5188. ],
  5189. [
  5190. "font-variant",
  5191. {
  5192. "name": "font-variant",
  5193. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant",
  5194. "initial": "normal",
  5195. "appliesTo": "all elements and text",
  5196. "inherited": "yes",
  5197. "percentages": "n/a",
  5198. "computedValue": "as specified",
  5199. "canonicalOrder": "per grammar",
  5200. "animationType": "discrete",
  5201. "styleDeclaration": [
  5202. "font-variant",
  5203. "fontVariant"
  5204. ],
  5205. "syntax": "normal | none | [ [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ] || [ small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps ] || [ 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>) ] || [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ] || [ <east-asian-variant-values> || <east-asian-width-values> || ruby ] || [ sub | super ] || [ text | emoji | unicode ] ]",
  5206. "extended": []
  5207. }
  5208. ],
  5209. [
  5210. "font-variant-alternates",
  5211. {
  5212. "name": "font-variant-alternates",
  5213. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-alternates",
  5214. "initial": "normal",
  5215. "appliesTo": "all elements and text",
  5216. "inherited": "yes",
  5217. "percentages": "n/a",
  5218. "computedValue": "as specified",
  5219. "canonicalOrder": "per grammar",
  5220. "animationType": "discrete",
  5221. "styleDeclaration": [
  5222. "font-variant-alternates",
  5223. "fontVariantAlternates"
  5224. ],
  5225. "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>) ]",
  5226. "extended": []
  5227. }
  5228. ],
  5229. [
  5230. "font-variant-caps",
  5231. {
  5232. "name": "font-variant-caps",
  5233. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-caps",
  5234. "initial": "normal",
  5235. "appliesTo": "all elements and text",
  5236. "inherited": "yes",
  5237. "percentages": "n/a",
  5238. "computedValue": "as specified",
  5239. "canonicalOrder": "per grammar",
  5240. "animationType": "discrete",
  5241. "styleDeclaration": [
  5242. "font-variant-caps",
  5243. "fontVariantCaps"
  5244. ],
  5245. "syntax": "normal | small-caps | all-small-caps | petite-caps | all-petite-caps | unicase | titling-caps",
  5246. "extended": []
  5247. }
  5248. ],
  5249. [
  5250. "font-variant-east-asian",
  5251. {
  5252. "name": "font-variant-east-asian",
  5253. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-east-asian",
  5254. "initial": "normal",
  5255. "appliesTo": "all elements and text",
  5256. "inherited": "yes",
  5257. "percentages": "n/a",
  5258. "computedValue": "as specified",
  5259. "canonicalOrder": "per grammar",
  5260. "animationType": "discrete",
  5261. "styleDeclaration": [
  5262. "font-variant-east-asian",
  5263. "fontVariantEastAsian"
  5264. ],
  5265. "syntax": "normal | [ <east-asian-variant-values> || <east-asian-width-values> || ruby ]",
  5266. "extended": []
  5267. }
  5268. ],
  5269. [
  5270. "font-variant-emoji",
  5271. {
  5272. "name": "font-variant-emoji",
  5273. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-emoji",
  5274. "initial": "normal",
  5275. "appliesTo": "all elements and text",
  5276. "inherited": "yes",
  5277. "percentages": "N/a",
  5278. "computedValue": "specified keyword",
  5279. "canonicalOrder": "per grammar",
  5280. "animationType": "discrete",
  5281. "styleDeclaration": [
  5282. "font-variant-emoji",
  5283. "fontVariantEmoji"
  5284. ],
  5285. "syntax": "normal | text | emoji | unicode",
  5286. "extended": []
  5287. }
  5288. ],
  5289. [
  5290. "font-variant-ligatures",
  5291. {
  5292. "name": "font-variant-ligatures",
  5293. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-ligatures",
  5294. "initial": "normal",
  5295. "appliesTo": "all elements and text",
  5296. "inherited": "yes",
  5297. "percentages": "n/a",
  5298. "computedValue": "as specified",
  5299. "canonicalOrder": "per grammar",
  5300. "animationType": "discrete",
  5301. "styleDeclaration": [
  5302. "font-variant-ligatures",
  5303. "fontVariantLigatures"
  5304. ],
  5305. "syntax": "normal | none | [ <common-lig-values> || <discretionary-lig-values> || <historical-lig-values> || <contextual-alt-values> ]",
  5306. "extended": []
  5307. }
  5308. ],
  5309. [
  5310. "font-variant-numeric",
  5311. {
  5312. "name": "font-variant-numeric",
  5313. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-numeric",
  5314. "initial": "normal",
  5315. "appliesTo": "all elements and text",
  5316. "inherited": "yes",
  5317. "percentages": "n/a",
  5318. "computedValue": "as specified",
  5319. "canonicalOrder": "per grammar",
  5320. "animationType": "discrete",
  5321. "styleDeclaration": [
  5322. "font-variant-numeric",
  5323. "fontVariantNumeric"
  5324. ],
  5325. "syntax": "normal | [ <numeric-figure-values> || <numeric-spacing-values> || <numeric-fraction-values> || ordinal || slashed-zero ]",
  5326. "extended": []
  5327. }
  5328. ],
  5329. [
  5330. "font-variant-position",
  5331. {
  5332. "name": "font-variant-position",
  5333. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variant-position",
  5334. "initial": "normal",
  5335. "appliesTo": "all elements and text",
  5336. "inherited": "yes",
  5337. "percentages": "n/a",
  5338. "computedValue": "as specified",
  5339. "canonicalOrder": "per grammar",
  5340. "animationType": "discrete",
  5341. "styleDeclaration": [
  5342. "font-variant-position",
  5343. "fontVariantPosition"
  5344. ],
  5345. "syntax": "normal | sub | super",
  5346. "extended": []
  5347. }
  5348. ],
  5349. [
  5350. "font-variation-settings",
  5351. {
  5352. "name": "font-variation-settings",
  5353. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-variation-settings",
  5354. "initial": "normal",
  5355. "appliesTo": "all elements and text",
  5356. "inherited": "yes",
  5357. "percentages": "n/a",
  5358. "computedValue": "the keyword normal or a list, each item a string paired with a number",
  5359. "canonicalOrder": "per grammar",
  5360. "animationType": "see prose",
  5361. "styleDeclaration": [
  5362. "font-variation-settings",
  5363. "fontVariationSettings"
  5364. ],
  5365. "syntax": "normal | [ <opentype-tag> <number> ]#",
  5366. "extended": []
  5367. }
  5368. ],
  5369. [
  5370. "font-weight",
  5371. {
  5372. "name": "font-weight",
  5373. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-weight",
  5374. "initial": "normal",
  5375. "appliesTo": "all elements and text",
  5376. "inherited": "yes",
  5377. "percentages": "n/a",
  5378. "computedValue": "a number, see below",
  5379. "canonicalOrder": "per grammar",
  5380. "animationType": "by computed value type",
  5381. "styleDeclaration": [
  5382. "font-weight",
  5383. "fontWeight"
  5384. ],
  5385. "syntax": "<font-weight-absolute> | bolder | lighter",
  5386. "extended": []
  5387. }
  5388. ],
  5389. [
  5390. "font-width",
  5391. {
  5392. "name": "font-width",
  5393. "href": "https://drafts.csswg.org/css-fonts-4/#propdef-font-width",
  5394. "initial": "normal",
  5395. "appliesTo": "all elements and text",
  5396. "inherited": "yes",
  5397. "percentages": "Not resolved",
  5398. "computedValue": "a percentage, see below",
  5399. "canonicalOrder": "per grammar",
  5400. "animationType": "by computed value type",
  5401. "styleDeclaration": [
  5402. "font-width",
  5403. "fontWidth"
  5404. ],
  5405. "syntax": "normal | <percentage [0,∞]> | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded",
  5406. "extended": []
  5407. }
  5408. ],
  5409. [
  5410. "footnote-display",
  5411. {
  5412. "name": "footnote-display",
  5413. "href": "https://drafts.csswg.org/css-gcpm-3/#propdef-footnote-display",
  5414. "initial": "block",
  5415. "appliesTo": "elements",
  5416. "inherited": "no",
  5417. "percentages": "N/A",
  5418. "computedValue": "specified value",
  5419. "canonicalOrder": "per grammar",
  5420. "animationType": "discrete",
  5421. "styleDeclaration": [
  5422. "footnote-display",
  5423. "footnoteDisplay"
  5424. ],
  5425. "syntax": "block | inline | compact",
  5426. "extended": []
  5427. }
  5428. ],
  5429. [
  5430. "footnote-policy",
  5431. {
  5432. "name": "footnote-policy",
  5433. "href": "https://drafts.csswg.org/css-gcpm-3/#propdef-footnote-policy",
  5434. "initial": "auto",
  5435. "appliesTo": "elements",
  5436. "inherited": "no",
  5437. "percentages": "N/A",
  5438. "computedValue": "specified value",
  5439. "canonicalOrder": "per grammar",
  5440. "animationType": "discrete",
  5441. "styleDeclaration": [
  5442. "footnote-policy",
  5443. "footnotePolicy"
  5444. ],
  5445. "syntax": "auto | line | block",
  5446. "extended": []
  5447. }
  5448. ],
  5449. [
  5450. "forced-color-adjust",
  5451. {
  5452. "name": "forced-color-adjust",
  5453. "href": "https://drafts.csswg.org/css-color-adjust-1/#propdef-forced-color-adjust",
  5454. "initial": "auto",
  5455. "appliesTo": "all elements and text",
  5456. "inherited": "yes",
  5457. "percentages": "n/a",
  5458. "computedValue": "as specified",
  5459. "canonicalOrder": "per grammar",
  5460. "animationType": "not animatable",
  5461. "styleDeclaration": [
  5462. "forced-color-adjust",
  5463. "forcedColorAdjust"
  5464. ],
  5465. "syntax": "auto | none | preserve-parent-color",
  5466. "extended": []
  5467. }
  5468. ],
  5469. [
  5470. "gap",
  5471. {
  5472. "name": "gap",
  5473. "href": "https://drafts.csswg.org/css-align-3/#propdef-gap",
  5474. "initial": "see individual properties",
  5475. "appliesTo": "multi-column containers, flex containers, grid containers",
  5476. "inherited": "no",
  5477. "percentages": "refer to corresponding dimension of the content area",
  5478. "computedValue": "see individual properties",
  5479. "canonicalOrder": "per grammar",
  5480. "animationType": "by computed value type",
  5481. "styleDeclaration": [
  5482. "gap"
  5483. ],
  5484. "syntax": "<'row-gap'> <'column-gap'>?",
  5485. "extended": []
  5486. }
  5487. ],
  5488. [
  5489. "glyph-orientation-vertical",
  5490. {
  5491. "name": "glyph-orientation-vertical",
  5492. "href": "https://drafts.csswg.org/css-writing-modes-4/#propdef-glyph-orientation-vertical",
  5493. "initial": "n/a",
  5494. "appliesTo": "n/a",
  5495. "inherited": "n/a",
  5496. "percentages": "n/a",
  5497. "computedValue": "n/a",
  5498. "canonicalOrder": "n/a",
  5499. "animationType": "n/a",
  5500. "styleDeclaration": [
  5501. "glyph-orientation-vertical",
  5502. "glyphOrientationVertical"
  5503. ],
  5504. "syntax": "auto | 0deg | 90deg | 0 | 90",
  5505. "extended": []
  5506. }
  5507. ],
  5508. [
  5509. "grid",
  5510. {
  5511. "name": "grid",
  5512. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid",
  5513. "initial": "none",
  5514. "appliesTo": "grid containers",
  5515. "inherited": "see individual properties",
  5516. "percentages": "see individual properties",
  5517. "computedValue": "see individual properties",
  5518. "animationType": "see individual properties",
  5519. "canonicalOrder": "per grammar",
  5520. "styleDeclaration": [
  5521. "grid"
  5522. ],
  5523. "syntax": "<'grid-template'> | <'grid-template-rows'> / [ auto-flow && dense? ] <'grid-auto-columns'>? | [ auto-flow && dense? ] <'grid-auto-rows'>? / <'grid-template-columns'>",
  5524. "extended": []
  5525. }
  5526. ],
  5527. [
  5528. "grid-area",
  5529. {
  5530. "name": "grid-area",
  5531. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-area",
  5532. "initial": "auto",
  5533. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5534. "inherited": "no",
  5535. "percentages": "N/A",
  5536. "computedValue": "see individual properties",
  5537. "animationType": "discrete",
  5538. "canonicalOrder": "per grammar",
  5539. "styleDeclaration": [
  5540. "grid-area",
  5541. "gridArea"
  5542. ],
  5543. "syntax": "<grid-line> [ / <grid-line> ]{0,3}",
  5544. "extended": []
  5545. }
  5546. ],
  5547. [
  5548. "grid-auto-columns",
  5549. {
  5550. "name": "grid-auto-columns",
  5551. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-auto-columns",
  5552. "initial": "auto",
  5553. "appliesTo": "grid containers",
  5554. "inherited": "no",
  5555. "percentages": "see Track Sizing",
  5556. "computedValue": "see Track Sizing",
  5557. "canonicalOrder": "per grammar",
  5558. "animationType": "if the list lengths match, by computed value type per item; discrete otherwise",
  5559. "styleDeclaration": [
  5560. "grid-auto-columns",
  5561. "gridAutoColumns"
  5562. ],
  5563. "syntax": "<track-size>+",
  5564. "extended": []
  5565. }
  5566. ],
  5567. [
  5568. "grid-auto-flow",
  5569. {
  5570. "name": "grid-auto-flow",
  5571. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-auto-flow",
  5572. "initial": "row",
  5573. "appliesTo": "grid containers",
  5574. "inherited": "no",
  5575. "percentages": "n/a",
  5576. "computedValue": "specified keyword(s)",
  5577. "canonicalOrder": "per grammar",
  5578. "animationType": "discrete",
  5579. "styleDeclaration": [
  5580. "grid-auto-flow",
  5581. "gridAutoFlow"
  5582. ],
  5583. "syntax": "[ row | column ] || dense",
  5584. "extended": []
  5585. }
  5586. ],
  5587. [
  5588. "grid-auto-rows",
  5589. {
  5590. "name": "grid-auto-rows",
  5591. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-auto-rows",
  5592. "initial": "auto",
  5593. "appliesTo": "grid containers",
  5594. "inherited": "no",
  5595. "percentages": "see Track Sizing",
  5596. "computedValue": "see Track Sizing",
  5597. "canonicalOrder": "per grammar",
  5598. "animationType": "if the list lengths match, by computed value type per item; discrete otherwise",
  5599. "styleDeclaration": [
  5600. "grid-auto-rows",
  5601. "gridAutoRows"
  5602. ],
  5603. "syntax": "<track-size>+",
  5604. "extended": []
  5605. }
  5606. ],
  5607. [
  5608. "grid-column",
  5609. {
  5610. "name": "grid-column",
  5611. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-column",
  5612. "initial": "auto",
  5613. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5614. "inherited": "no",
  5615. "percentages": "N/A",
  5616. "computedValue": "see individual properties",
  5617. "animationType": "discrete",
  5618. "canonicalOrder": "per grammar",
  5619. "styleDeclaration": [
  5620. "grid-column",
  5621. "gridColumn"
  5622. ],
  5623. "syntax": "<grid-line> [ / <grid-line> ]?",
  5624. "extended": []
  5625. }
  5626. ],
  5627. [
  5628. "grid-column-end",
  5629. {
  5630. "name": "grid-column-end",
  5631. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-column-end",
  5632. "initial": "auto",
  5633. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5634. "inherited": "no",
  5635. "percentages": "n/a",
  5636. "computedValue": "specified keyword, identifier, and/or integer",
  5637. "canonicalOrder": "per grammar",
  5638. "animationType": "discrete",
  5639. "styleDeclaration": [
  5640. "grid-column-end",
  5641. "gridColumnEnd"
  5642. ],
  5643. "syntax": "<grid-line>",
  5644. "extended": []
  5645. }
  5646. ],
  5647. [
  5648. "grid-column-start",
  5649. {
  5650. "name": "grid-column-start",
  5651. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-column-start",
  5652. "initial": "auto",
  5653. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5654. "inherited": "no",
  5655. "percentages": "n/a",
  5656. "computedValue": "specified keyword, identifier, and/or integer",
  5657. "canonicalOrder": "per grammar",
  5658. "animationType": "discrete",
  5659. "styleDeclaration": [
  5660. "grid-column-start",
  5661. "gridColumnStart"
  5662. ],
  5663. "syntax": "<grid-line>",
  5664. "extended": []
  5665. }
  5666. ],
  5667. [
  5668. "grid-row",
  5669. {
  5670. "name": "grid-row",
  5671. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-row",
  5672. "initial": "auto",
  5673. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5674. "inherited": "no",
  5675. "percentages": "N/A",
  5676. "computedValue": "see individual properties",
  5677. "animationType": "discrete",
  5678. "canonicalOrder": "per grammar",
  5679. "styleDeclaration": [
  5680. "grid-row",
  5681. "gridRow"
  5682. ],
  5683. "syntax": "<grid-line> [ / <grid-line> ]?",
  5684. "extended": []
  5685. }
  5686. ],
  5687. [
  5688. "grid-row-end",
  5689. {
  5690. "name": "grid-row-end",
  5691. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-row-end",
  5692. "initial": "auto",
  5693. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5694. "inherited": "no",
  5695. "percentages": "n/a",
  5696. "computedValue": "specified keyword, identifier, and/or integer",
  5697. "canonicalOrder": "per grammar",
  5698. "animationType": "discrete",
  5699. "styleDeclaration": [
  5700. "grid-row-end",
  5701. "gridRowEnd"
  5702. ],
  5703. "syntax": "<grid-line>",
  5704. "extended": []
  5705. }
  5706. ],
  5707. [
  5708. "grid-row-start",
  5709. {
  5710. "name": "grid-row-start",
  5711. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-row-start",
  5712. "initial": "auto",
  5713. "appliesTo": "grid items and absolutely-positioned boxes whose containing block is a grid container",
  5714. "inherited": "no",
  5715. "percentages": "n/a",
  5716. "computedValue": "specified keyword, identifier, and/or integer",
  5717. "canonicalOrder": "per grammar",
  5718. "animationType": "discrete",
  5719. "styleDeclaration": [
  5720. "grid-row-start",
  5721. "gridRowStart"
  5722. ],
  5723. "syntax": "<grid-line>",
  5724. "extended": []
  5725. }
  5726. ],
  5727. [
  5728. "grid-template",
  5729. {
  5730. "name": "grid-template",
  5731. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-template",
  5732. "initial": "none",
  5733. "appliesTo": "grid containers",
  5734. "inherited": "see individual properties",
  5735. "percentages": "see individual properties",
  5736. "computedValue": "see individual properties",
  5737. "animationType": "see individual properties",
  5738. "canonicalOrder": "per grammar",
  5739. "styleDeclaration": [
  5740. "grid-template",
  5741. "gridTemplate"
  5742. ],
  5743. "syntax": "none | [ <'grid-template-rows'> / <'grid-template-columns'> ] | [ <line-names>? <string> <track-size>? <line-names>? ]+ [ / <explicit-track-list> ]?",
  5744. "extended": []
  5745. }
  5746. ],
  5747. [
  5748. "grid-template-areas",
  5749. {
  5750. "name": "grid-template-areas",
  5751. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-template-areas",
  5752. "initial": "none",
  5753. "appliesTo": "grid containers",
  5754. "inherited": "no",
  5755. "percentages": "n/a",
  5756. "computedValue": "the keyword none or a list of string values",
  5757. "canonicalOrder": "per grammar",
  5758. "animationType": "discrete",
  5759. "styleDeclaration": [
  5760. "grid-template-areas",
  5761. "gridTemplateAreas"
  5762. ],
  5763. "syntax": "none | <string>+",
  5764. "extended": []
  5765. }
  5766. ],
  5767. [
  5768. "grid-template-columns",
  5769. {
  5770. "name": "grid-template-columns",
  5771. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-template-columns",
  5772. "initial": "none",
  5773. "appliesTo": "grid containers",
  5774. "inherited": "no",
  5775. "percentages": "refer to corresponding dimension of the content area",
  5776. "computedValue": "the keyword none or a computed track list",
  5777. "canonicalOrder": "per grammar",
  5778. "animationType": "if the list lengths match, by computed value type per item in the computed track list (see § 7.2.5 Computed Value of a Track Listing and § 7.2.3.3 Interpolation/Combination of repeat()); discrete otherwise",
  5779. "styleDeclaration": [
  5780. "grid-template-columns",
  5781. "gridTemplateColumns"
  5782. ],
  5783. "syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
  5784. "extended": []
  5785. }
  5786. ],
  5787. [
  5788. "grid-template-rows",
  5789. {
  5790. "name": "grid-template-rows",
  5791. "href": "https://drafts.csswg.org/css-grid-2/#propdef-grid-template-rows",
  5792. "initial": "none",
  5793. "appliesTo": "grid containers",
  5794. "inherited": "no",
  5795. "percentages": "refer to corresponding dimension of the content area",
  5796. "computedValue": "the keyword none or a computed track list",
  5797. "canonicalOrder": "per grammar",
  5798. "animationType": "if the list lengths match, by computed value type per item in the computed track list (see § 7.2.5 Computed Value of a Track Listing and § 7.2.3.3 Interpolation/Combination of repeat()); discrete otherwise",
  5799. "styleDeclaration": [
  5800. "grid-template-rows",
  5801. "gridTemplateRows"
  5802. ],
  5803. "syntax": "none | <track-list> | <auto-track-list> | subgrid <line-name-list>?",
  5804. "extended": []
  5805. }
  5806. ],
  5807. [
  5808. "hanging-punctuation",
  5809. {
  5810. "name": "hanging-punctuation",
  5811. "href": "https://drafts.csswg.org/css-text-4/#propdef-hanging-punctuation",
  5812. "initial": "none",
  5813. "appliesTo": "text",
  5814. "inherited": "yes",
  5815. "percentages": "n/a",
  5816. "computedValue": "specified keyword(s)",
  5817. "canonicalOrder": "per grammar",
  5818. "animationType": "discrete",
  5819. "styleDeclaration": [
  5820. "hanging-punctuation",
  5821. "hangingPunctuation"
  5822. ],
  5823. "syntax": "none | [ first || [ force-end | allow-end ] || last ]",
  5824. "extended": []
  5825. }
  5826. ],
  5827. [
  5828. "height",
  5829. {
  5830. "name": "height",
  5831. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-height",
  5832. "initial": "auto",
  5833. "appliesTo": "all elements except non-replaced inlines",
  5834. "inherited": "no",
  5835. "percentages": "relative to width/height of containing block",
  5836. "computedValue": "as specified, with <length-percentage> values computed",
  5837. "canonicalOrder": "per grammar",
  5838. "animationType": "by computed value type, recursing into fit-content()",
  5839. "logicalPropertyGroup": "size",
  5840. "styleDeclaration": [
  5841. "height"
  5842. ],
  5843. "syntax": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
  5844. "extended": [
  5845. "https://drafts.csswg.org/css-anchor-position-1/",
  5846. "https://drafts.csswg.org/css-sizing-4/"
  5847. ]
  5848. }
  5849. ],
  5850. [
  5851. "hyphenate-character",
  5852. {
  5853. "name": "hyphenate-character",
  5854. "href": "https://drafts.csswg.org/css-text-4/#propdef-hyphenate-character",
  5855. "initial": "auto",
  5856. "appliesTo": "text",
  5857. "inherited": "yes",
  5858. "percentages": "n/a",
  5859. "computedValue": "specified keyword",
  5860. "canonicalOrder": "per grammar",
  5861. "animationType": "discrete",
  5862. "styleDeclaration": [
  5863. "hyphenate-character",
  5864. "hyphenateCharacter"
  5865. ],
  5866. "syntax": "auto | <string>",
  5867. "extended": []
  5868. }
  5869. ],
  5870. [
  5871. "hyphenate-limit-chars",
  5872. {
  5873. "name": "hyphenate-limit-chars",
  5874. "href": "https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-chars",
  5875. "initial": "auto",
  5876. "appliesTo": "text",
  5877. "inherited": "yes",
  5878. "percentages": "n/a",
  5879. "computedValue": "three values, each either the auto keyword or an integer",
  5880. "canonicalOrder": "per grammar",
  5881. "animationType": "by computed value type",
  5882. "styleDeclaration": [
  5883. "hyphenate-limit-chars",
  5884. "hyphenateLimitChars"
  5885. ],
  5886. "syntax": "[ auto | <integer> ]{1,3}",
  5887. "extended": []
  5888. }
  5889. ],
  5890. [
  5891. "hyphenate-limit-last",
  5892. {
  5893. "name": "hyphenate-limit-last",
  5894. "href": "https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-last",
  5895. "initial": "none",
  5896. "appliesTo": "block containers",
  5897. "inherited": "yes",
  5898. "percentages": "n/a",
  5899. "computedValue": "specified keyword",
  5900. "canonicalOrder": "per grammar",
  5901. "animationType": "discrete",
  5902. "styleDeclaration": [
  5903. "hyphenate-limit-last",
  5904. "hyphenateLimitLast"
  5905. ],
  5906. "syntax": "none | always | column | page | spread",
  5907. "extended": []
  5908. }
  5909. ],
  5910. [
  5911. "hyphenate-limit-lines",
  5912. {
  5913. "name": "hyphenate-limit-lines",
  5914. "href": "https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-lines",
  5915. "initial": "no-limit",
  5916. "appliesTo": "block containers",
  5917. "inherited": "yes",
  5918. "percentages": "n/a",
  5919. "computedValue": "specified keyword or integer",
  5920. "canonicalOrder": "per grammar",
  5921. "animationType": "by computed value type",
  5922. "styleDeclaration": [
  5923. "hyphenate-limit-lines",
  5924. "hyphenateLimitLines"
  5925. ],
  5926. "syntax": "no-limit | <integer>",
  5927. "extended": []
  5928. }
  5929. ],
  5930. [
  5931. "hyphenate-limit-zone",
  5932. {
  5933. "name": "hyphenate-limit-zone",
  5934. "href": "https://drafts.csswg.org/css-text-4/#propdef-hyphenate-limit-zone",
  5935. "initial": "0",
  5936. "appliesTo": "block containers",
  5937. "inherited": "yes",
  5938. "percentages": "refers to length of the line box",
  5939. "computedValue": "computed <length-percentage> value",
  5940. "canonicalOrder": "per grammar",
  5941. "animationType": "by computed value type",
  5942. "styleDeclaration": [
  5943. "hyphenate-limit-zone",
  5944. "hyphenateLimitZone"
  5945. ],
  5946. "syntax": "<length-percentage>",
  5947. "extended": []
  5948. }
  5949. ],
  5950. [
  5951. "hyphens",
  5952. {
  5953. "name": "hyphens",
  5954. "href": "https://drafts.csswg.org/css-text-4/#propdef-hyphens",
  5955. "initial": "manual",
  5956. "appliesTo": "text",
  5957. "inherited": "yes",
  5958. "percentages": "n/a",
  5959. "computedValue": "specified keyword",
  5960. "canonicalOrder": "n/a",
  5961. "animationType": "discrete",
  5962. "styleDeclaration": [
  5963. "hyphens"
  5964. ],
  5965. "syntax": "none | manual | auto",
  5966. "extended": []
  5967. }
  5968. ],
  5969. [
  5970. "image-orientation",
  5971. {
  5972. "name": "image-orientation",
  5973. "href": "https://drafts.csswg.org/css-images-3/#propdef-image-orientation",
  5974. "initial": "from-image",
  5975. "appliesTo": "all elements",
  5976. "inherited": "yes",
  5977. "percentages": "n/a",
  5978. "computedValue": "the specified keyword, or an <angle>, rounded and normalized (see text), plus optionally a flip keyword",
  5979. "canonicalOrder": "per grammar",
  5980. "animationType": "discrete",
  5981. "styleDeclaration": [
  5982. "image-orientation",
  5983. "imageOrientation"
  5984. ],
  5985. "syntax": "from-image | none | [ <angle> || flip ]",
  5986. "extended": []
  5987. }
  5988. ],
  5989. [
  5990. "image-rendering",
  5991. {
  5992. "name": "image-rendering",
  5993. "href": "https://drafts.csswg.org/css-images-3/#propdef-image-rendering",
  5994. "initial": "auto",
  5995. "appliesTo": "all elements",
  5996. "inherited": "yes",
  5997. "percentages": "n/a",
  5998. "computedValue": "specified keyword",
  5999. "canonicalOrder": "per grammar",
  6000. "animationType": "discrete",
  6001. "styleDeclaration": [
  6002. "image-rendering",
  6003. "imageRendering"
  6004. ],
  6005. "syntax": "auto | smooth | high-quality | pixelated | crisp-edges",
  6006. "extended": []
  6007. }
  6008. ],
  6009. [
  6010. "image-resolution",
  6011. {
  6012. "name": "image-resolution",
  6013. "href": "https://drafts.csswg.org/css-images-4/#propdef-image-resolution",
  6014. "initial": "1dppx",
  6015. "appliesTo": "all elements",
  6016. "inherited": "yes",
  6017. "percentages": "n/a",
  6018. "computedValue": "specified keyword(s) and/or <resolution> (possibly adjusted for snap, see below)",
  6019. "canonicalOrder": "per grammar",
  6020. "animationType": "discrete",
  6021. "styleDeclaration": [
  6022. "image-resolution",
  6023. "imageResolution"
  6024. ],
  6025. "syntax": "[ from-image || <resolution> ] && snap?",
  6026. "extended": []
  6027. }
  6028. ],
  6029. [
  6030. "initial-letter",
  6031. {
  6032. "name": "initial-letter",
  6033. "href": "https://drafts.csswg.org/css-inline-3/#propdef-initial-letter",
  6034. "initial": "normal",
  6035. "appliesTo": "certain inline-level boxes and ::first-letter and inside ::marker boxes (see prose)",
  6036. "inherited": "no",
  6037. "percentages": "N/A",
  6038. "computedValue": "the keyword normal or a number paired with an integer",
  6039. "canonicalOrder": "per grammar",
  6040. "animationType": "by computed value type",
  6041. "styleDeclaration": [
  6042. "initial-letter",
  6043. "initialLetter"
  6044. ],
  6045. "syntax": "normal | <number [1,∞]> <integer [1,∞]> | <number [1,∞]> && [ drop | raise ]?",
  6046. "extended": []
  6047. }
  6048. ],
  6049. [
  6050. "initial-letter-align",
  6051. {
  6052. "name": "initial-letter-align",
  6053. "href": "https://drafts.csswg.org/css-inline-3/#propdef-initial-letter-align",
  6054. "initial": "alphabetic",
  6055. "appliesTo": "certain inline-level boxes and ::first-letter and inside ::marker boxes (see prose)",
  6056. "inherited": "yes",
  6057. "percentages": "N/A",
  6058. "computedValue": "specified keyword(s)",
  6059. "canonicalOrder": "per grammar",
  6060. "animationType": "discrete",
  6061. "styleDeclaration": [
  6062. "initial-letter-align",
  6063. "initialLetterAlign"
  6064. ],
  6065. "syntax": "[ border-box? [ alphabetic | ideographic | hanging | leading ]? ]!",
  6066. "extended": []
  6067. }
  6068. ],
  6069. [
  6070. "initial-letter-wrap",
  6071. {
  6072. "name": "initial-letter-wrap",
  6073. "href": "https://drafts.csswg.org/css-inline-3/#propdef-initial-letter-wrap",
  6074. "initial": "none",
  6075. "appliesTo": "certain inline-level boxes and ::first-letter and inside ::marker boxes (see prose)",
  6076. "inherited": "yes",
  6077. "percentages": "relative to logical width of (last fragment of) initial letter",
  6078. "computedValue": "specified keyword or computed <length-percentage> value",
  6079. "canonicalOrder": "per grammar",
  6080. "animationType": "by computed value type",
  6081. "styleDeclaration": [
  6082. "initial-letter-wrap",
  6083. "initialLetterWrap"
  6084. ],
  6085. "syntax": "none | first | all | grid | <length-percentage>",
  6086. "extended": []
  6087. }
  6088. ],
  6089. [
  6090. "inline-size",
  6091. {
  6092. "name": "inline-size",
  6093. "href": "https://drafts.csswg.org/css-logical-1/#propdef-inline-size",
  6094. "initial": "auto",
  6095. "appliesTo": "Same as height and width",
  6096. "inherited": "no",
  6097. "percentages": "As for the corresponding physical property",
  6098. "computedValue": "Same as height, width",
  6099. "canonicalOrder": "per grammar",
  6100. "animationType": "by computed value type",
  6101. "logicalPropertyGroup": "size",
  6102. "styleDeclaration": [
  6103. "inline-size",
  6104. "inlineSize"
  6105. ],
  6106. "syntax": "<'width'>",
  6107. "extended": []
  6108. }
  6109. ],
  6110. [
  6111. "inline-sizing",
  6112. {
  6113. "name": "inline-sizing",
  6114. "href": "https://drafts.csswg.org/css-inline-3/#propdef-inline-sizing",
  6115. "initial": "normal",
  6116. "appliesTo": "inline boxes, but not ruby container boxes nor internal ruby boxes",
  6117. "inherited": "yes",
  6118. "percentages": "n/a",
  6119. "computedValue": "specified keyword",
  6120. "canonicalOrder": "per grammar",
  6121. "animationType": "discrete",
  6122. "styleDeclaration": [
  6123. "inline-sizing",
  6124. "inlineSizing"
  6125. ],
  6126. "syntax": "normal | stretch",
  6127. "extended": []
  6128. }
  6129. ],
  6130. [
  6131. "inset",
  6132. {
  6133. "name": "inset",
  6134. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset",
  6135. "initial": "auto",
  6136. "appliesTo": "positioned elements",
  6137. "inherited": "no",
  6138. "percentages": "see individual properties",
  6139. "computedValue": "see individual properties",
  6140. "canonicalOrder": "per grammar",
  6141. "animationType": "by computed value type",
  6142. "styleDeclaration": [
  6143. "inset"
  6144. ],
  6145. "syntax": "<'top'>{1,4}",
  6146. "extended": []
  6147. }
  6148. ],
  6149. [
  6150. "inset-block",
  6151. {
  6152. "name": "inset-block",
  6153. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset-block",
  6154. "initial": "auto",
  6155. "appliesTo": "positioned elements",
  6156. "inherited": "no",
  6157. "percentages": "see individual properties",
  6158. "computedValue": "see individual properties",
  6159. "canonicalOrder": "per grammar",
  6160. "animationType": "by computed value type",
  6161. "styleDeclaration": [
  6162. "inset-block",
  6163. "insetBlock"
  6164. ],
  6165. "syntax": "<'top'>{1,2}",
  6166. "extended": []
  6167. }
  6168. ],
  6169. [
  6170. "inset-block-end",
  6171. {
  6172. "name": "inset-block-end",
  6173. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset-block-end",
  6174. "initial": "auto",
  6175. "appliesTo": "positioned elements",
  6176. "inherited": "no",
  6177. "percentages": "refer to size of containing block; see prose",
  6178. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6179. "canonicalOrder": "per grammar",
  6180. "animationType": "by computed value type",
  6181. "logicalPropertyGroup": "inset",
  6182. "styleDeclaration": [
  6183. "inset-block-end",
  6184. "insetBlockEnd"
  6185. ],
  6186. "syntax": "auto | <length-percentage>",
  6187. "extended": []
  6188. }
  6189. ],
  6190. [
  6191. "inset-block-start",
  6192. {
  6193. "name": "inset-block-start",
  6194. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset-block-start",
  6195. "initial": "auto",
  6196. "appliesTo": "positioned elements",
  6197. "inherited": "no",
  6198. "percentages": "refer to size of containing block; see prose",
  6199. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6200. "canonicalOrder": "per grammar",
  6201. "animationType": "by computed value type",
  6202. "logicalPropertyGroup": "inset",
  6203. "styleDeclaration": [
  6204. "inset-block-start",
  6205. "insetBlockStart"
  6206. ],
  6207. "syntax": "auto | <length-percentage>",
  6208. "extended": []
  6209. }
  6210. ],
  6211. [
  6212. "inset-inline",
  6213. {
  6214. "name": "inset-inline",
  6215. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset-inline",
  6216. "initial": "auto",
  6217. "appliesTo": "positioned elements",
  6218. "inherited": "no",
  6219. "percentages": "see individual properties",
  6220. "computedValue": "see individual properties",
  6221. "canonicalOrder": "per grammar",
  6222. "animationType": "by computed value type",
  6223. "styleDeclaration": [
  6224. "inset-inline",
  6225. "insetInline"
  6226. ],
  6227. "syntax": "<'top'>{1,2}",
  6228. "extended": []
  6229. }
  6230. ],
  6231. [
  6232. "inset-inline-end",
  6233. {
  6234. "name": "inset-inline-end",
  6235. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset-inline-end",
  6236. "initial": "auto",
  6237. "appliesTo": "positioned elements",
  6238. "inherited": "no",
  6239. "percentages": "refer to size of containing block; see prose",
  6240. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6241. "canonicalOrder": "per grammar",
  6242. "animationType": "by computed value type",
  6243. "logicalPropertyGroup": "inset",
  6244. "styleDeclaration": [
  6245. "inset-inline-end",
  6246. "insetInlineEnd"
  6247. ],
  6248. "syntax": "auto | <length-percentage>",
  6249. "extended": []
  6250. }
  6251. ],
  6252. [
  6253. "inset-inline-start",
  6254. {
  6255. "name": "inset-inline-start",
  6256. "href": "https://drafts.csswg.org/css-position-3/#propdef-inset-inline-start",
  6257. "initial": "auto",
  6258. "appliesTo": "positioned elements",
  6259. "inherited": "no",
  6260. "percentages": "refer to size of containing block; see prose",
  6261. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6262. "canonicalOrder": "per grammar",
  6263. "animationType": "by computed value type",
  6264. "logicalPropertyGroup": "inset",
  6265. "styleDeclaration": [
  6266. "inset-inline-start",
  6267. "insetInlineStart"
  6268. ],
  6269. "syntax": "auto | <length-percentage>",
  6270. "extended": []
  6271. }
  6272. ],
  6273. [
  6274. "interpolate-size",
  6275. {
  6276. "name": "interpolate-size",
  6277. "href": "https://drafts.csswg.org/css-values-5/#propdef-interpolate-size",
  6278. "initial": "numeric-only",
  6279. "appliesTo": "all elements",
  6280. "inherited": "yes",
  6281. "percentages": "n/a",
  6282. "computedValue": "as specified",
  6283. "canonicalOrder": "per grammar",
  6284. "animationType": "not animatable",
  6285. "styleDeclaration": [
  6286. "interpolate-size",
  6287. "interpolateSize"
  6288. ],
  6289. "syntax": "numeric-only | allow-keywords",
  6290. "extended": []
  6291. }
  6292. ],
  6293. [
  6294. "isolation",
  6295. {
  6296. "name": "isolation",
  6297. "href": "https://drafts.fxtf.org/compositing-2/#propdef-isolation",
  6298. "initial": "auto",
  6299. "appliesTo": "All elements. In SVG, it applies to container elements, graphics elements and graphics referencing elements. [SVG11]",
  6300. "inherited": "no",
  6301. "percentages": "N/A",
  6302. "computedValue": "as specified",
  6303. "canonicalOrder": "per grammar",
  6304. "media": "visual",
  6305. "animatable": "no",
  6306. "styleDeclaration": [
  6307. "isolation"
  6308. ],
  6309. "syntax": "<isolation-mode>",
  6310. "extended": []
  6311. }
  6312. ],
  6313. [
  6314. "item-cross",
  6315. {
  6316. "name": "item-cross",
  6317. "href": "https://drafts.csswg.org/css-grid-3/#propdef-item-cross",
  6318. "initial": "auto",
  6319. "appliesTo": "flex containers, grid containers, masonry containers",
  6320. "inherited": "no",
  6321. "percentages": "N/A",
  6322. "computedValue": "as specified",
  6323. "canonicalOrder": "per grammar",
  6324. "animationType": "discrete",
  6325. "styleDeclaration": [
  6326. "item-cross",
  6327. "itemCross"
  6328. ],
  6329. "syntax": "[ auto | nowrap | wrap ] || [ normal | reverse ] | wrap-reverse",
  6330. "extended": []
  6331. }
  6332. ],
  6333. [
  6334. "item-direction",
  6335. {
  6336. "name": "item-direction",
  6337. "href": "https://drafts.csswg.org/css-grid-3/#propdef-item-direction",
  6338. "initial": "auto",
  6339. "appliesTo": "flex containers, grid containers, masonry containers",
  6340. "inherited": "no",
  6341. "percentages": "N/A",
  6342. "computedValue": "as specified",
  6343. "canonicalOrder": "per grammar",
  6344. "animationType": "discrete",
  6345. "styleDeclaration": [
  6346. "item-direction",
  6347. "itemDirection"
  6348. ],
  6349. "syntax": "auto | row | column | row-reverse | column-reverse",
  6350. "extended": []
  6351. }
  6352. ],
  6353. [
  6354. "item-flow",
  6355. {
  6356. "name": "item-flow",
  6357. "href": "https://drafts.csswg.org/css-grid-3/#propdef-item-flow",
  6358. "initial": "see individual properties",
  6359. "appliesTo": "see individual properties",
  6360. "inherited": "see individual properties",
  6361. "percentages": "see individual properties",
  6362. "computedValue": "see individual properties",
  6363. "animationType": "see individual properties",
  6364. "canonicalOrder": "per grammar",
  6365. "styleDeclaration": [
  6366. "item-flow",
  6367. "itemFlow"
  6368. ],
  6369. "syntax": "<'item-direction'> || <'item-wrap'> || <'item-pack'> || <'item-tolerance'>",
  6370. "extended": []
  6371. }
  6372. ],
  6373. [
  6374. "item-pack",
  6375. {
  6376. "name": "item-pack",
  6377. "href": "https://drafts.csswg.org/css-grid-3/#propdef-item-pack",
  6378. "initial": "normal",
  6379. "appliesTo": "flex containers, grid containers, masonry containers",
  6380. "inherited": "no",
  6381. "percentages": "N/A",
  6382. "computedValue": "as specified",
  6383. "canonicalOrder": "per grammar",
  6384. "animationType": "discrete",
  6385. "styleDeclaration": [
  6386. "item-pack",
  6387. "itemPack"
  6388. ],
  6389. "syntax": "normal | dense || balance",
  6390. "extended": []
  6391. }
  6392. ],
  6393. [
  6394. "item-track",
  6395. {
  6396. "name": "item-track",
  6397. "href": "https://drafts.csswg.org/css-grid-3/#propdef-item-track",
  6398. "initial": "auto",
  6399. "appliesTo": "flex containers, grid containers, masonry containers",
  6400. "inherited": "no",
  6401. "percentages": "N/A",
  6402. "computedValue": "as specified",
  6403. "canonicalOrder": "per grammar",
  6404. "animationType": "discrete",
  6405. "styleDeclaration": [
  6406. "item-track",
  6407. "itemTrack"
  6408. ],
  6409. "syntax": "auto | row | column | row-reverse | column-reverse",
  6410. "extended": []
  6411. }
  6412. ],
  6413. [
  6414. "item-wrap",
  6415. {
  6416. "name": "item-wrap",
  6417. "href": "https://drafts.csswg.org/css-grid-3/#propdef-item-wrap",
  6418. "initial": "auto",
  6419. "appliesTo": "flex containers, grid containers, masonry containers",
  6420. "inherited": "no",
  6421. "percentages": "N/A",
  6422. "computedValue": "as specified",
  6423. "canonicalOrder": "per grammar",
  6424. "animationType": "discrete",
  6425. "styleDeclaration": [
  6426. "item-wrap",
  6427. "itemWrap"
  6428. ],
  6429. "syntax": "[ auto | nowrap | wrap ] || [ normal | reverse ] | wrap-reverse",
  6430. "extended": []
  6431. }
  6432. ],
  6433. [
  6434. "justify-content",
  6435. {
  6436. "name": "justify-content",
  6437. "href": "https://drafts.csswg.org/css-align-3/#propdef-justify-content",
  6438. "initial": "normal",
  6439. "appliesTo": "multicol containers, flex containers, and grid containers",
  6440. "inherited": "no",
  6441. "percentages": "n/a",
  6442. "computedValue": "specified keyword(s)",
  6443. "canonicalOrder": "per grammar",
  6444. "animationType": "discrete",
  6445. "styleDeclaration": [
  6446. "justify-content",
  6447. "justifyContent"
  6448. ],
  6449. "syntax": "normal | <content-distribution> | <overflow-position>? [ <content-position> | left | right ]",
  6450. "extended": []
  6451. }
  6452. ],
  6453. [
  6454. "justify-items",
  6455. {
  6456. "name": "justify-items",
  6457. "href": "https://drafts.csswg.org/css-align-3/#propdef-justify-items",
  6458. "initial": "legacy",
  6459. "appliesTo": "all elements",
  6460. "inherited": "no",
  6461. "percentages": "n/a",
  6462. "computedValue": "specified keyword(s), except for legacy (see prose)",
  6463. "canonicalOrder": "per grammar",
  6464. "animationType": "discrete",
  6465. "styleDeclaration": [
  6466. "justify-items",
  6467. "justifyItems"
  6468. ],
  6469. "syntax": "normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | legacy | legacy && [ left | right | center ] | anchor-center",
  6470. "extended": [
  6471. "https://drafts.csswg.org/css-anchor-position-1/"
  6472. ]
  6473. }
  6474. ],
  6475. [
  6476. "justify-self",
  6477. {
  6478. "name": "justify-self",
  6479. "href": "https://drafts.csswg.org/css-align-3/#propdef-justify-self",
  6480. "initial": "auto",
  6481. "appliesTo": "block-level boxes, absolutely-positioned boxes, and grid items",
  6482. "inherited": "no",
  6483. "percentages": "n/a",
  6484. "computedValue": "specified keyword(s)",
  6485. "canonicalOrder": "per grammar",
  6486. "animationType": "discrete",
  6487. "styleDeclaration": [
  6488. "justify-self",
  6489. "justifySelf"
  6490. ],
  6491. "syntax": "auto | normal | stretch | <baseline-position> | <overflow-position>? [ <self-position> | left | right ] | anchor-center",
  6492. "extended": [
  6493. "https://drafts.csswg.org/css-anchor-position-1/"
  6494. ]
  6495. }
  6496. ],
  6497. [
  6498. "left",
  6499. {
  6500. "name": "left",
  6501. "href": "https://drafts.csswg.org/css-position-3/#propdef-left",
  6502. "initial": "auto",
  6503. "appliesTo": "positioned elements",
  6504. "inherited": "no",
  6505. "percentages": "refer to size of containing block; see prose",
  6506. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6507. "canonicalOrder": "per grammar",
  6508. "animationType": "by computed value type",
  6509. "logicalPropertyGroup": "inset",
  6510. "styleDeclaration": [
  6511. "left"
  6512. ],
  6513. "syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
  6514. "extended": [
  6515. "https://drafts.csswg.org/css-anchor-position-1/"
  6516. ]
  6517. }
  6518. ],
  6519. [
  6520. "letter-spacing",
  6521. {
  6522. "name": "letter-spacing",
  6523. "href": "https://drafts.csswg.org/css-text-4/#propdef-letter-spacing",
  6524. "initial": "normal",
  6525. "appliesTo": "inline boxes and text",
  6526. "inherited": "yes",
  6527. "percentages": "relative to computed font-size, i.e. 1em",
  6528. "computedValue": "an absolute length and/or a percentage",
  6529. "canonicalOrder": "n/a",
  6530. "animationType": "by computed value type",
  6531. "styleDeclaration": [
  6532. "letter-spacing",
  6533. "letterSpacing"
  6534. ],
  6535. "syntax": "normal | <length-percentage>",
  6536. "extended": []
  6537. }
  6538. ],
  6539. [
  6540. "lighting-color",
  6541. {
  6542. "name": "lighting-color",
  6543. "href": "https://drafts.fxtf.org/filter-effects-1/#propdef-lighting-color",
  6544. "initial": "white",
  6545. "appliesTo": "feDiffuseLighting and feSpecularLighting elements",
  6546. "inherited": "no",
  6547. "percentages": "n/a",
  6548. "computedValue": "as specified",
  6549. "canonicalOrder": "per grammar",
  6550. "animationType": "by computed value",
  6551. "media": "visual",
  6552. "styleDeclaration": [
  6553. "lighting-color",
  6554. "lightingColor"
  6555. ],
  6556. "syntax": "<color>",
  6557. "extended": []
  6558. }
  6559. ],
  6560. [
  6561. "line-break",
  6562. {
  6563. "name": "line-break",
  6564. "href": "https://drafts.csswg.org/css-text-4/#propdef-line-break",
  6565. "initial": "auto",
  6566. "appliesTo": "text",
  6567. "inherited": "yes",
  6568. "percentages": "n/a",
  6569. "computedValue": "specified keyword",
  6570. "canonicalOrder": "n/a",
  6571. "animationType": "discrete",
  6572. "styleDeclaration": [
  6573. "line-break",
  6574. "lineBreak"
  6575. ],
  6576. "syntax": "auto | loose | normal | strict | anywhere",
  6577. "extended": []
  6578. }
  6579. ],
  6580. [
  6581. "line-clamp",
  6582. {
  6583. "name": "line-clamp",
  6584. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-line-clamp",
  6585. "initial": "none",
  6586. "appliesTo": "see individual properties",
  6587. "inherited": "see individual properties",
  6588. "percentages": "N/A",
  6589. "computedValue": "see individual properties",
  6590. "animationType": "see individual properties",
  6591. "canonicalOrder": "per grammar",
  6592. "styleDeclaration": [
  6593. "line-clamp",
  6594. "lineClamp"
  6595. ],
  6596. "syntax": "none | [<integer [1,∞]> || <'block-ellipsis'>] -webkit-legacy?",
  6597. "extended": []
  6598. }
  6599. ],
  6600. [
  6601. "line-fit-edge",
  6602. {
  6603. "name": "line-fit-edge",
  6604. "href": "https://drafts.csswg.org/css-inline-3/#propdef-line-fit-edge",
  6605. "initial": "leading",
  6606. "appliesTo": "inline boxes",
  6607. "inherited": "yes",
  6608. "percentages": "N/A",
  6609. "computedValue": "the specified keyword",
  6610. "canonicalOrder": "per grammar",
  6611. "animationType": "discrete",
  6612. "styleDeclaration": [
  6613. "line-fit-edge",
  6614. "lineFitEdge"
  6615. ],
  6616. "syntax": "leading | <text-edge>",
  6617. "extended": []
  6618. }
  6619. ],
  6620. [
  6621. "line-grid",
  6622. {
  6623. "name": "line-grid",
  6624. "href": "https://drafts.csswg.org/css-line-grid-1/#propdef-line-grid",
  6625. "initial": "match-parent",
  6626. "appliesTo": "block, flex and grid containers",
  6627. "inherited": "no",
  6628. "percentages": "N/A",
  6629. "computedValue": "specified keyword",
  6630. "canonicalOrder": "per grammar",
  6631. "animationType": "discrete",
  6632. "styleDeclaration": [
  6633. "line-grid",
  6634. "lineGrid"
  6635. ],
  6636. "syntax": "match-parent | create",
  6637. "extended": []
  6638. }
  6639. ],
  6640. [
  6641. "line-height",
  6642. {
  6643. "name": "line-height",
  6644. "href": "https://drafts.csswg.org/css-inline-3/#propdef-line-height",
  6645. "initial": "normal",
  6646. "appliesTo": "non-replaced inline boxes and SVG text content elements",
  6647. "inherited": "yes",
  6648. "percentages": "computed relative to 1em",
  6649. "computedValue": "the specified keyword, a number, or a computed <length> value",
  6650. "canonicalOrder": "per grammar",
  6651. "animationType": "by computed value type",
  6652. "styleDeclaration": [
  6653. "line-height",
  6654. "lineHeight"
  6655. ],
  6656. "syntax": "normal | <number [0,∞]> | <length-percentage [0,∞]>",
  6657. "extended": []
  6658. }
  6659. ],
  6660. [
  6661. "line-height-step",
  6662. {
  6663. "name": "line-height-step",
  6664. "href": "https://drafts.csswg.org/css-rhythm-1/#propdef-line-height-step",
  6665. "initial": "0",
  6666. "appliesTo": "block containers",
  6667. "inherited": "yes",
  6668. "percentages": "N/A",
  6669. "computedValue": "absolute length",
  6670. "canonicalOrder": "per grammar",
  6671. "animationType": "by computed value type",
  6672. "styleDeclaration": [
  6673. "line-height-step",
  6674. "lineHeightStep"
  6675. ],
  6676. "syntax": "<length [0,∞]>",
  6677. "extended": []
  6678. }
  6679. ],
  6680. [
  6681. "line-padding",
  6682. {
  6683. "name": "line-padding",
  6684. "href": "https://drafts.csswg.org/css-text-4/#propdef-line-padding",
  6685. "initial": "0",
  6686. "appliesTo": "inline boxes",
  6687. "inherited": "yes",
  6688. "percentages": "N/A",
  6689. "computedValue": "absolute length",
  6690. "canonicalOrder": "per grammar",
  6691. "animationType": "by computed value type",
  6692. "styleDeclaration": [
  6693. "line-padding",
  6694. "linePadding"
  6695. ],
  6696. "syntax": "<length>",
  6697. "extended": []
  6698. }
  6699. ],
  6700. [
  6701. "line-snap",
  6702. {
  6703. "name": "line-snap",
  6704. "href": "https://drafts.csswg.org/css-line-grid-1/#propdef-line-snap",
  6705. "initial": "none",
  6706. "appliesTo": "block container elements",
  6707. "inherited": "yes",
  6708. "percentages": "N/A",
  6709. "computedValue": "specified keyword",
  6710. "canonicalOrder": "per grammar",
  6711. "animationType": "discrete",
  6712. "styleDeclaration": [
  6713. "line-snap",
  6714. "lineSnap"
  6715. ],
  6716. "syntax": "none | baseline | contain",
  6717. "extended": []
  6718. }
  6719. ],
  6720. [
  6721. "list-style",
  6722. {
  6723. "name": "list-style",
  6724. "href": "https://drafts.csswg.org/css-lists-3/#propdef-list-style",
  6725. "initial": "see individual properties",
  6726. "appliesTo": "list items",
  6727. "inherited": "see individual properties",
  6728. "percentages": "see individual properties",
  6729. "computedValue": "see individual properties",
  6730. "animationType": "see individual properties",
  6731. "canonicalOrder": "per grammar",
  6732. "styleDeclaration": [
  6733. "list-style",
  6734. "listStyle"
  6735. ],
  6736. "syntax": "<'list-style-position'> || <'list-style-image'> || <'list-style-type'>",
  6737. "extended": []
  6738. }
  6739. ],
  6740. [
  6741. "list-style-image",
  6742. {
  6743. "name": "list-style-image",
  6744. "href": "https://drafts.csswg.org/css-lists-3/#propdef-list-style-image",
  6745. "initial": "none",
  6746. "appliesTo": "list items",
  6747. "inherited": "yes",
  6748. "percentages": "n/a",
  6749. "computedValue": "the keyword noneor the computed <image>",
  6750. "canonicalOrder": "per grammar",
  6751. "animationType": "discrete",
  6752. "styleDeclaration": [
  6753. "list-style-image",
  6754. "listStyleImage"
  6755. ],
  6756. "syntax": "<image> | none",
  6757. "extended": []
  6758. }
  6759. ],
  6760. [
  6761. "list-style-position",
  6762. {
  6763. "name": "list-style-position",
  6764. "href": "https://drafts.csswg.org/css-lists-3/#propdef-list-style-position",
  6765. "initial": "outside",
  6766. "appliesTo": "list items",
  6767. "inherited": "yes",
  6768. "percentages": "n/a",
  6769. "computedValue": "keyword, but see prose",
  6770. "canonicalOrder": "per grammar",
  6771. "animationType": "discrete",
  6772. "styleDeclaration": [
  6773. "list-style-position",
  6774. "listStylePosition"
  6775. ],
  6776. "syntax": "inside | outside",
  6777. "extended": []
  6778. }
  6779. ],
  6780. [
  6781. "list-style-type",
  6782. {
  6783. "name": "list-style-type",
  6784. "href": "https://drafts.csswg.org/css-lists-3/#propdef-list-style-type",
  6785. "initial": "disc",
  6786. "appliesTo": "list items",
  6787. "inherited": "yes",
  6788. "percentages": "n/a",
  6789. "computedValue": "specified value",
  6790. "canonicalOrder": "per grammar",
  6791. "animationType": "discrete",
  6792. "styleDeclaration": [
  6793. "list-style-type",
  6794. "listStyleType"
  6795. ],
  6796. "syntax": "<counter-style> | <string> | none",
  6797. "extended": []
  6798. }
  6799. ],
  6800. [
  6801. "margin",
  6802. {
  6803. "name": "margin",
  6804. "href": "https://drafts.csswg.org/css-box-4/#propdef-margin",
  6805. "initial": "0",
  6806. "appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
  6807. "inherited": "no",
  6808. "percentages": "refer to logical width of containing block",
  6809. "computedValue": "see individual properties",
  6810. "canonicalOrder": "per grammar",
  6811. "animationType": "by computed value type",
  6812. "styleDeclaration": [
  6813. "margin"
  6814. ],
  6815. "syntax": "<'margin-top'>{1,4}",
  6816. "extended": []
  6817. }
  6818. ],
  6819. [
  6820. "margin-block",
  6821. {
  6822. "name": "margin-block",
  6823. "href": "https://drafts.csswg.org/css-logical-1/#propdef-margin-block",
  6824. "initial": "see individual properties",
  6825. "appliesTo": "see individual properties",
  6826. "inherited": "see individual properties",
  6827. "percentages": "see individual properties",
  6828. "computedValue": "see individual properties",
  6829. "animationType": "see individual properties",
  6830. "canonicalOrder": "per grammar",
  6831. "styleDeclaration": [
  6832. "margin-block",
  6833. "marginBlock"
  6834. ],
  6835. "syntax": "<'margin-top'>{1,2}",
  6836. "extended": []
  6837. }
  6838. ],
  6839. [
  6840. "margin-block-end",
  6841. {
  6842. "name": "margin-block-end",
  6843. "href": "https://drafts.csswg.org/css-logical-1/#propdef-margin-block-end",
  6844. "initial": "0",
  6845. "appliesTo": "Same as margin-top",
  6846. "inherited": "no",
  6847. "percentages": "As for the corresponding physical property",
  6848. "computedValue": "Same as corresponding margin-* properties",
  6849. "canonicalOrder": "per grammar",
  6850. "animationType": "by computed value type",
  6851. "logicalPropertyGroup": "margin",
  6852. "styleDeclaration": [
  6853. "margin-block-end",
  6854. "marginBlockEnd"
  6855. ],
  6856. "syntax": "<'margin-top'>",
  6857. "extended": []
  6858. }
  6859. ],
  6860. [
  6861. "margin-block-start",
  6862. {
  6863. "name": "margin-block-start",
  6864. "href": "https://drafts.csswg.org/css-logical-1/#propdef-margin-block-start",
  6865. "initial": "0",
  6866. "appliesTo": "Same as margin-top",
  6867. "inherited": "no",
  6868. "percentages": "As for the corresponding physical property",
  6869. "computedValue": "Same as corresponding margin-* properties",
  6870. "canonicalOrder": "per grammar",
  6871. "animationType": "by computed value type",
  6872. "logicalPropertyGroup": "margin",
  6873. "styleDeclaration": [
  6874. "margin-block-start",
  6875. "marginBlockStart"
  6876. ],
  6877. "syntax": "<'margin-top'>",
  6878. "extended": []
  6879. }
  6880. ],
  6881. [
  6882. "margin-bottom",
  6883. {
  6884. "name": "margin-bottom",
  6885. "href": "https://drafts.csswg.org/css-box-4/#propdef-margin-bottom",
  6886. "initial": "0",
  6887. "appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
  6888. "inherited": "no",
  6889. "percentages": "refer to logical width of containing block",
  6890. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6891. "canonicalOrder": "per grammar",
  6892. "animationType": "by computed value type",
  6893. "logicalPropertyGroup": "margin",
  6894. "styleDeclaration": [
  6895. "margin-bottom",
  6896. "marginBottom"
  6897. ],
  6898. "syntax": "<length-percentage> | auto | <anchor-size()>",
  6899. "extended": [
  6900. "https://drafts.csswg.org/css-anchor-position-1/"
  6901. ]
  6902. }
  6903. ],
  6904. [
  6905. "margin-break",
  6906. {
  6907. "name": "margin-break",
  6908. "href": "https://drafts.csswg.org/css-break-4/#propdef-margin-break",
  6909. "initial": "auto",
  6910. "appliesTo": "all elements",
  6911. "inherited": "no",
  6912. "percentages": "n/a",
  6913. "computedValue": "specified keyword",
  6914. "canonicalOrder": "per grammar",
  6915. "animationType": "discrete",
  6916. "styleDeclaration": [
  6917. "margin-break",
  6918. "marginBreak"
  6919. ],
  6920. "syntax": "auto | keep | discard",
  6921. "extended": []
  6922. }
  6923. ],
  6924. [
  6925. "margin-inline",
  6926. {
  6927. "name": "margin-inline",
  6928. "href": "https://drafts.csswg.org/css-logical-1/#propdef-margin-inline",
  6929. "initial": "see individual properties",
  6930. "appliesTo": "see individual properties",
  6931. "inherited": "see individual properties",
  6932. "percentages": "see individual properties",
  6933. "computedValue": "see individual properties",
  6934. "animationType": "see individual properties",
  6935. "canonicalOrder": "per grammar",
  6936. "styleDeclaration": [
  6937. "margin-inline",
  6938. "marginInline"
  6939. ],
  6940. "syntax": "<'margin-top'>{1,2}",
  6941. "extended": []
  6942. }
  6943. ],
  6944. [
  6945. "margin-inline-end",
  6946. {
  6947. "name": "margin-inline-end",
  6948. "href": "https://drafts.csswg.org/css-logical-1/#propdef-margin-inline-end",
  6949. "initial": "0",
  6950. "appliesTo": "Same as margin-top",
  6951. "inherited": "no",
  6952. "percentages": "As for the corresponding physical property",
  6953. "computedValue": "Same as corresponding margin-* properties",
  6954. "canonicalOrder": "per grammar",
  6955. "animationType": "by computed value type",
  6956. "logicalPropertyGroup": "margin",
  6957. "styleDeclaration": [
  6958. "margin-inline-end",
  6959. "marginInlineEnd"
  6960. ],
  6961. "syntax": "<'margin-top'>",
  6962. "extended": []
  6963. }
  6964. ],
  6965. [
  6966. "margin-inline-start",
  6967. {
  6968. "name": "margin-inline-start",
  6969. "href": "https://drafts.csswg.org/css-logical-1/#propdef-margin-inline-start",
  6970. "initial": "0",
  6971. "appliesTo": "Same as margin-top",
  6972. "inherited": "no",
  6973. "percentages": "As for the corresponding physical property",
  6974. "computedValue": "Same as corresponding margin-* properties",
  6975. "canonicalOrder": "per grammar",
  6976. "animationType": "by computed value type",
  6977. "logicalPropertyGroup": "margin",
  6978. "styleDeclaration": [
  6979. "margin-inline-start",
  6980. "marginInlineStart"
  6981. ],
  6982. "syntax": "<'margin-top'>",
  6983. "extended": []
  6984. }
  6985. ],
  6986. [
  6987. "margin-left",
  6988. {
  6989. "name": "margin-left",
  6990. "href": "https://drafts.csswg.org/css-box-4/#propdef-margin-left",
  6991. "initial": "0",
  6992. "appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
  6993. "inherited": "no",
  6994. "percentages": "refer to logical width of containing block",
  6995. "computedValue": "the keyword auto or a computed <length-percentage> value",
  6996. "canonicalOrder": "per grammar",
  6997. "animationType": "by computed value type",
  6998. "logicalPropertyGroup": "margin",
  6999. "styleDeclaration": [
  7000. "margin-left",
  7001. "marginLeft"
  7002. ],
  7003. "syntax": "<length-percentage> | auto | <anchor-size()>",
  7004. "extended": [
  7005. "https://drafts.csswg.org/css-anchor-position-1/"
  7006. ]
  7007. }
  7008. ],
  7009. [
  7010. "margin-right",
  7011. {
  7012. "name": "margin-right",
  7013. "href": "https://drafts.csswg.org/css-box-4/#propdef-margin-right",
  7014. "initial": "0",
  7015. "appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
  7016. "inherited": "no",
  7017. "percentages": "refer to logical width of containing block",
  7018. "computedValue": "the keyword auto or a computed <length-percentage> value",
  7019. "canonicalOrder": "per grammar",
  7020. "animationType": "by computed value type",
  7021. "logicalPropertyGroup": "margin",
  7022. "styleDeclaration": [
  7023. "margin-right",
  7024. "marginRight"
  7025. ],
  7026. "syntax": "<length-percentage> | auto | <anchor-size()>",
  7027. "extended": [
  7028. "https://drafts.csswg.org/css-anchor-position-1/"
  7029. ]
  7030. }
  7031. ],
  7032. [
  7033. "margin-top",
  7034. {
  7035. "name": "margin-top",
  7036. "href": "https://drafts.csswg.org/css-box-4/#propdef-margin-top",
  7037. "initial": "0",
  7038. "appliesTo": "all elements except internal table elements, ruby base containers, and ruby annotation containers",
  7039. "inherited": "no",
  7040. "percentages": "refer to logical width of containing block",
  7041. "computedValue": "the keyword auto or a computed <length-percentage> value",
  7042. "canonicalOrder": "per grammar",
  7043. "animationType": "by computed value type",
  7044. "logicalPropertyGroup": "margin",
  7045. "styleDeclaration": [
  7046. "margin-top",
  7047. "marginTop"
  7048. ],
  7049. "syntax": "<length-percentage> | auto | <anchor-size()>",
  7050. "extended": [
  7051. "https://drafts.csswg.org/css-anchor-position-1/"
  7052. ]
  7053. }
  7054. ],
  7055. [
  7056. "margin-trim",
  7057. {
  7058. "name": "margin-trim",
  7059. "href": "https://drafts.csswg.org/css-box-4/#propdef-margin-trim",
  7060. "initial": "none",
  7061. "appliesTo": "block containers, multi-column containers, flex containers, grid containers",
  7062. "inherited": "no",
  7063. "percentages": "N/A",
  7064. "computedValue": "a set of zero to four keywords indicating which sides to trim",
  7065. "canonicalOrder": "per grammar",
  7066. "animationType": "discrete",
  7067. "styleDeclaration": [
  7068. "margin-trim",
  7069. "marginTrim"
  7070. ],
  7071. "syntax": "none | [ block || inline ] | [ block-start || inline-start || block-end || inline-end ]",
  7072. "extended": []
  7073. }
  7074. ],
  7075. [
  7076. "marker",
  7077. {
  7078. "name": "marker",
  7079. "href": "https://svgwg.org/svg2-draft/painting.html#MarkerProperty",
  7080. "initial": "not defined for shorthand properties",
  7081. "appliesTo": "shapes",
  7082. "inherited": "yes",
  7083. "percentages": "N/A",
  7084. "media": "visual",
  7085. "computedValue": "see individual properties",
  7086. "animationType": "discrete",
  7087. "styleDeclaration": [
  7088. "marker"
  7089. ],
  7090. "syntax": "none | <marker-ref>",
  7091. "extended": []
  7092. }
  7093. ],
  7094. [
  7095. "marker-end",
  7096. {
  7097. "name": "marker-end",
  7098. "href": "https://svgwg.org/svg2-draft/painting.html#MarkerEndProperty",
  7099. "initial": "none",
  7100. "appliesTo": "shapes",
  7101. "inherited": "yes",
  7102. "percentages": "N/A",
  7103. "media": "visual",
  7104. "computedValue": "as specified, but with <url> values (that are part of a <marker-ref>) made absolute",
  7105. "animationType": "discrete",
  7106. "styleDeclaration": [
  7107. "marker-end",
  7108. "markerEnd"
  7109. ],
  7110. "syntax": "none | <marker-ref>",
  7111. "extended": []
  7112. }
  7113. ],
  7114. [
  7115. "marker-mid",
  7116. {
  7117. "name": "marker-mid",
  7118. "href": "https://svgwg.org/svg2-draft/painting.html#MarkerMidProperty",
  7119. "initial": "none",
  7120. "appliesTo": "shapes",
  7121. "inherited": "yes",
  7122. "percentages": "N/A",
  7123. "media": "visual",
  7124. "computedValue": "as specified, but with <url> values (that are part of a <marker-ref>) made absolute",
  7125. "animationType": "discrete",
  7126. "styleDeclaration": [
  7127. "marker-mid",
  7128. "markerMid"
  7129. ],
  7130. "syntax": "none | <marker-ref>",
  7131. "extended": []
  7132. }
  7133. ],
  7134. [
  7135. "marker-side",
  7136. {
  7137. "name": "marker-side",
  7138. "href": "https://drafts.csswg.org/css-lists-3/#propdef-marker-side",
  7139. "initial": "match-self",
  7140. "appliesTo": "list items",
  7141. "inherited": "yes",
  7142. "percentages": "n/a",
  7143. "computedValue": "specified keyword",
  7144. "canonicalOrder": "per grammar",
  7145. "animationType": "discrete",
  7146. "styleDeclaration": [
  7147. "marker-side",
  7148. "markerSide"
  7149. ],
  7150. "syntax": "match-self | match-parent",
  7151. "extended": []
  7152. }
  7153. ],
  7154. [
  7155. "marker-start",
  7156. {
  7157. "name": "marker-start",
  7158. "href": "https://svgwg.org/svg2-draft/painting.html#MarkerStartProperty",
  7159. "initial": "none",
  7160. "appliesTo": "shapes",
  7161. "inherited": "yes",
  7162. "percentages": "N/A",
  7163. "media": "visual",
  7164. "computedValue": "as specified, but with <url> values (that are part of a <marker-ref>) made absolute",
  7165. "animationType": "discrete",
  7166. "styleDeclaration": [
  7167. "marker-start",
  7168. "markerStart"
  7169. ],
  7170. "syntax": "none | <marker-ref>",
  7171. "extended": []
  7172. }
  7173. ],
  7174. [
  7175. "mask",
  7176. {
  7177. "name": "mask",
  7178. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask",
  7179. "initial": "see individual properties",
  7180. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7181. "inherited": "no",
  7182. "percentages": "see individual properties",
  7183. "computedValue": "see individual properties",
  7184. "canonicalOrder": "per grammar",
  7185. "animationType": "see individual properties",
  7186. "media": "visual",
  7187. "styleDeclaration": [
  7188. "mask"
  7189. ],
  7190. "syntax": "<mask-layer>#",
  7191. "extended": []
  7192. }
  7193. ],
  7194. [
  7195. "mask-border",
  7196. {
  7197. "name": "mask-border",
  7198. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border",
  7199. "initial": "See individual properties",
  7200. "appliesTo": "See individual properties",
  7201. "inherited": "no",
  7202. "percentages": "n/a",
  7203. "computedValue": "See individual properties",
  7204. "canonicalOrder": "per grammar",
  7205. "animationType": "See individual properties",
  7206. "media": "visual",
  7207. "styleDeclaration": [
  7208. "mask-border",
  7209. "maskBorder"
  7210. ],
  7211. "syntax": "<'mask-border-source'> || <'mask-border-slice'> [ / <'mask-border-width'>? [ / <'mask-border-outset'> ]? ]? || <'mask-border-repeat'> || <'mask-border-mode'>",
  7212. "extended": []
  7213. }
  7214. ],
  7215. [
  7216. "mask-border-mode",
  7217. {
  7218. "name": "mask-border-mode",
  7219. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-mode",
  7220. "initial": "alpha",
  7221. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7222. "inherited": "no",
  7223. "percentages": "n/a",
  7224. "computedValue": "as specified",
  7225. "canonicalOrder": "per grammar",
  7226. "animationType": "discrete",
  7227. "media": "visual",
  7228. "styleDeclaration": [
  7229. "mask-border-mode",
  7230. "maskBorderMode"
  7231. ],
  7232. "syntax": "luminance | alpha",
  7233. "extended": []
  7234. }
  7235. ],
  7236. [
  7237. "mask-border-outset",
  7238. {
  7239. "name": "mask-border-outset",
  7240. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-outset",
  7241. "initial": "0",
  7242. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7243. "inherited": "no",
  7244. "percentages": "n/a",
  7245. "computedValue": "all <length>s made absolute, otherwise as specified",
  7246. "canonicalOrder": "per grammar",
  7247. "animationType": "by computed value",
  7248. "media": "visual",
  7249. "styleDeclaration": [
  7250. "mask-border-outset",
  7251. "maskBorderOutset"
  7252. ],
  7253. "syntax": "[ <length> | <number> ]{1,4}",
  7254. "extended": []
  7255. }
  7256. ],
  7257. [
  7258. "mask-border-repeat",
  7259. {
  7260. "name": "mask-border-repeat",
  7261. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-repeat",
  7262. "initial": "stretch",
  7263. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7264. "inherited": "no",
  7265. "percentages": "n/a",
  7266. "computedValue": "as specified",
  7267. "canonicalOrder": "per grammar",
  7268. "animationType": "discrete",
  7269. "media": "visual",
  7270. "styleDeclaration": [
  7271. "mask-border-repeat",
  7272. "maskBorderRepeat"
  7273. ],
  7274. "syntax": "[ stretch | repeat | round | space ]{1,2}",
  7275. "extended": []
  7276. }
  7277. ],
  7278. [
  7279. "mask-border-slice",
  7280. {
  7281. "name": "mask-border-slice",
  7282. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-slice",
  7283. "initial": "0",
  7284. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7285. "inherited": "no",
  7286. "percentages": "refer to size of the mask border image",
  7287. "computedValue": "as specified",
  7288. "canonicalOrder": "per grammar",
  7289. "animationType": "by computed value",
  7290. "media": "visual",
  7291. "styleDeclaration": [
  7292. "mask-border-slice",
  7293. "maskBorderSlice"
  7294. ],
  7295. "syntax": "[ <number> | <percentage> ]{1,4} fill?",
  7296. "extended": []
  7297. }
  7298. ],
  7299. [
  7300. "mask-border-source",
  7301. {
  7302. "name": "mask-border-source",
  7303. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-source",
  7304. "initial": "none",
  7305. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7306. "inherited": "no",
  7307. "percentages": "n/a",
  7308. "computedValue": "they keyword none or the computed <image>",
  7309. "canonicalOrder": "per grammar",
  7310. "animationType": "discrete",
  7311. "media": "visual",
  7312. "styleDeclaration": [
  7313. "mask-border-source",
  7314. "maskBorderSource"
  7315. ],
  7316. "syntax": "none | <image>",
  7317. "extended": []
  7318. }
  7319. ],
  7320. [
  7321. "mask-border-width",
  7322. {
  7323. "name": "mask-border-width",
  7324. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-border-width",
  7325. "initial": "auto",
  7326. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7327. "inherited": "no",
  7328. "percentages": "relative to width/height of the mask border image area",
  7329. "computedValue": "all <length>s made absolute, otherwise as specified",
  7330. "canonicalOrder": "per grammar",
  7331. "animationType": "by computed value",
  7332. "media": "visual",
  7333. "styleDeclaration": [
  7334. "mask-border-width",
  7335. "maskBorderWidth"
  7336. ],
  7337. "syntax": "[ <length-percentage> | <number> | auto ]{1,4}",
  7338. "extended": []
  7339. }
  7340. ],
  7341. [
  7342. "mask-clip",
  7343. {
  7344. "name": "mask-clip",
  7345. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-clip",
  7346. "initial": "border-box",
  7347. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7348. "inherited": "no",
  7349. "percentages": "n/a",
  7350. "computedValue": "list, each item the keyword as specified",
  7351. "canonicalOrder": "per grammar",
  7352. "animationType": "discrete",
  7353. "media": "visual",
  7354. "styleDeclaration": [
  7355. "mask-clip",
  7356. "maskClip"
  7357. ],
  7358. "syntax": "[ <coord-box> | no-clip ]#",
  7359. "extended": []
  7360. }
  7361. ],
  7362. [
  7363. "mask-composite",
  7364. {
  7365. "name": "mask-composite",
  7366. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-composite",
  7367. "initial": "add",
  7368. "appliesTo": "All elements. In SVG, it applies to container elements without the defs element and all graphics elements",
  7369. "inherited": "no",
  7370. "percentages": "n/a",
  7371. "computedValue": "list, each item the keyword as specified",
  7372. "canonicalOrder": "per grammar",
  7373. "animationType": "discrete",
  7374. "media": "visual",
  7375. "styleDeclaration": [
  7376. "mask-composite",
  7377. "maskComposite"
  7378. ],
  7379. "syntax": "<compositing-operator>#",
  7380. "extended": []
  7381. }
  7382. ],
  7383. [
  7384. "mask-image",
  7385. {
  7386. "name": "mask-image",
  7387. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-image",
  7388. "initial": "none",
  7389. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7390. "inherited": "no",
  7391. "percentages": "n/a",
  7392. "computedValue": "list, each item the keyword none, a computed <image>, or a computed <url>",
  7393. "canonicalOrder": "per grammar",
  7394. "animationType": "discrete",
  7395. "media": "visual",
  7396. "styleDeclaration": [
  7397. "mask-image",
  7398. "maskImage"
  7399. ],
  7400. "syntax": "<mask-reference>#",
  7401. "extended": []
  7402. }
  7403. ],
  7404. [
  7405. "mask-mode",
  7406. {
  7407. "name": "mask-mode",
  7408. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-mode",
  7409. "initial": "match-source",
  7410. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7411. "inherited": "no",
  7412. "percentages": "n/a",
  7413. "computedValue": "list, each item the keyword as specified",
  7414. "canonicalOrder": "per grammar",
  7415. "animationType": "discrete",
  7416. "media": "visual",
  7417. "styleDeclaration": [
  7418. "mask-mode",
  7419. "maskMode"
  7420. ],
  7421. "syntax": "<masking-mode>#",
  7422. "extended": []
  7423. }
  7424. ],
  7425. [
  7426. "mask-origin",
  7427. {
  7428. "name": "mask-origin",
  7429. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-origin",
  7430. "initial": "border-box",
  7431. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7432. "inherited": "no",
  7433. "percentages": "n/a",
  7434. "computedValue": "list, each item the keyword as specified",
  7435. "canonicalOrder": "per grammar",
  7436. "animationType": "discrete",
  7437. "media": "visual",
  7438. "styleDeclaration": [
  7439. "mask-origin",
  7440. "maskOrigin"
  7441. ],
  7442. "syntax": "<coord-box>#",
  7443. "extended": []
  7444. }
  7445. ],
  7446. [
  7447. "mask-position",
  7448. {
  7449. "name": "mask-position",
  7450. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-position",
  7451. "initial": "0% 0%",
  7452. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7453. "inherited": "no",
  7454. "percentages": "refer to size of mask painting area minus size of mask layer image; see text background-position [CSS3BG]",
  7455. "computedValue": "list, each item consists of two keywords representing the origin and two offsets from that origin, each given as an absolute length (if given a <length>), otherwise as a percentage.",
  7456. "canonicalOrder": "per grammar",
  7457. "animationType": "repeatable list",
  7458. "media": "visual",
  7459. "styleDeclaration": [
  7460. "mask-position",
  7461. "maskPosition"
  7462. ],
  7463. "syntax": "<position>#",
  7464. "extended": []
  7465. }
  7466. ],
  7467. [
  7468. "mask-repeat",
  7469. {
  7470. "name": "mask-repeat",
  7471. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-repeat",
  7472. "initial": "repeat",
  7473. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7474. "inherited": "no",
  7475. "percentages": "n/a",
  7476. "computedValue": "list, each item a pair of keywords, one per dimension",
  7477. "canonicalOrder": "per grammar",
  7478. "animationType": "discrete",
  7479. "media": "visual",
  7480. "styleDeclaration": [
  7481. "mask-repeat",
  7482. "maskRepeat"
  7483. ],
  7484. "syntax": "<repeat-style>#",
  7485. "extended": []
  7486. }
  7487. ],
  7488. [
  7489. "mask-size",
  7490. {
  7491. "name": "mask-size",
  7492. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-size",
  7493. "initial": "auto",
  7494. "appliesTo": "All elements. In SVG, it applies to container elements excluding the defs element, all graphics elements and the use element",
  7495. "inherited": "no",
  7496. "percentages": "n/a",
  7497. "computedValue": "list, each item as specified, but with lengths made absolute",
  7498. "canonicalOrder": "per grammar",
  7499. "animationType": "repeatable list",
  7500. "media": "visual",
  7501. "styleDeclaration": [
  7502. "mask-size",
  7503. "maskSize"
  7504. ],
  7505. "syntax": "<bg-size>#",
  7506. "extended": []
  7507. }
  7508. ],
  7509. [
  7510. "mask-type",
  7511. {
  7512. "name": "mask-type",
  7513. "href": "https://drafts.fxtf.org/css-masking-1/#propdef-mask-type",
  7514. "initial": "luminance",
  7515. "appliesTo": "mask elements",
  7516. "inherited": "no",
  7517. "percentages": "n/a",
  7518. "computedValue": "as specified",
  7519. "canonicalOrder": "per grammar",
  7520. "animationType": "discrete",
  7521. "media": "visual",
  7522. "styleDeclaration": [
  7523. "mask-type",
  7524. "maskType"
  7525. ],
  7526. "syntax": "luminance | alpha",
  7527. "extended": []
  7528. }
  7529. ],
  7530. [
  7531. "max-block-size",
  7532. {
  7533. "name": "max-block-size",
  7534. "href": "https://drafts.csswg.org/css-logical-1/#propdef-max-block-size",
  7535. "initial": "none",
  7536. "appliesTo": "same as height and width",
  7537. "inherited": "no",
  7538. "percentages": "As for the corresponding physical property",
  7539. "computedValue": "Same as max-height, max-width",
  7540. "canonicalOrder": "per grammar",
  7541. "animationType": "by computed value type",
  7542. "logicalPropertyGroup": "max-size",
  7543. "styleDeclaration": [
  7544. "max-block-size",
  7545. "maxBlockSize"
  7546. ],
  7547. "syntax": "<'max-width'>",
  7548. "extended": []
  7549. }
  7550. ],
  7551. [
  7552. "max-height",
  7553. {
  7554. "name": "max-height",
  7555. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-max-height",
  7556. "initial": "none",
  7557. "appliesTo": "all elements that accept width or height",
  7558. "inherited": "no",
  7559. "percentages": "relative to width/height of containing block",
  7560. "computedValue": "as specified, with <length-percentage> values computed",
  7561. "canonicalOrder": "per grammar",
  7562. "animationType": "by computed value, recursing into fit-content()",
  7563. "logicalPropertyGroup": "max-size",
  7564. "styleDeclaration": [
  7565. "max-height",
  7566. "maxHeight"
  7567. ],
  7568. "syntax": "none | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
  7569. "extended": [
  7570. "https://drafts.csswg.org/css-anchor-position-1/",
  7571. "https://drafts.csswg.org/css-sizing-4/"
  7572. ]
  7573. }
  7574. ],
  7575. [
  7576. "max-inline-size",
  7577. {
  7578. "name": "max-inline-size",
  7579. "href": "https://drafts.csswg.org/css-logical-1/#propdef-max-inline-size",
  7580. "initial": "none",
  7581. "appliesTo": "same as height and width",
  7582. "inherited": "no",
  7583. "percentages": "As for the corresponding physical property",
  7584. "computedValue": "Same as max-height, max-width",
  7585. "canonicalOrder": "per grammar",
  7586. "animationType": "by computed value type",
  7587. "logicalPropertyGroup": "max-size",
  7588. "styleDeclaration": [
  7589. "max-inline-size",
  7590. "maxInlineSize"
  7591. ],
  7592. "syntax": "<'max-width'>",
  7593. "extended": []
  7594. }
  7595. ],
  7596. [
  7597. "max-lines",
  7598. {
  7599. "name": "max-lines",
  7600. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-max-lines",
  7601. "initial": "none",
  7602. "appliesTo": "block containers which are also either line-clamp containers or fragmentation containers that capture region breaks",
  7603. "inherited": "no",
  7604. "percentages": "N/A",
  7605. "computedValue": "the keyword none or an integer",
  7606. "canonicalOrder": "per grammar",
  7607. "animationType": "by computed value type",
  7608. "styleDeclaration": [
  7609. "max-lines",
  7610. "maxLines"
  7611. ],
  7612. "syntax": "none | <integer [1,∞]>",
  7613. "extended": []
  7614. }
  7615. ],
  7616. [
  7617. "max-width",
  7618. {
  7619. "name": "max-width",
  7620. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-max-width",
  7621. "initial": "none",
  7622. "appliesTo": "all elements that accept width or height",
  7623. "inherited": "no",
  7624. "percentages": "relative to width/height of containing block",
  7625. "computedValue": "as specified, with <length-percentage> values computed",
  7626. "canonicalOrder": "per grammar",
  7627. "animationType": "by computed value, recursing into fit-content()",
  7628. "logicalPropertyGroup": "max-size",
  7629. "styleDeclaration": [
  7630. "max-width",
  7631. "maxWidth"
  7632. ],
  7633. "syntax": "none | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
  7634. "extended": [
  7635. "https://drafts.csswg.org/css-anchor-position-1/",
  7636. "https://drafts.csswg.org/css-sizing-4/"
  7637. ]
  7638. }
  7639. ],
  7640. [
  7641. "min-block-size",
  7642. {
  7643. "name": "min-block-size",
  7644. "href": "https://drafts.csswg.org/css-logical-1/#propdef-min-block-size",
  7645. "initial": "0",
  7646. "appliesTo": "same as height and width",
  7647. "inherited": "no",
  7648. "percentages": "As for the corresponding physical property",
  7649. "computedValue": "Same as min-height, min-width",
  7650. "canonicalOrder": "per grammar",
  7651. "animationType": "by computed value type",
  7652. "logicalPropertyGroup": "min-size",
  7653. "styleDeclaration": [
  7654. "min-block-size",
  7655. "minBlockSize"
  7656. ],
  7657. "syntax": "<'min-width'>",
  7658. "extended": []
  7659. }
  7660. ],
  7661. [
  7662. "min-height",
  7663. {
  7664. "name": "min-height",
  7665. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-min-height",
  7666. "initial": "auto",
  7667. "appliesTo": "all elements that accept width or height",
  7668. "inherited": "no",
  7669. "percentages": "relative to width/height of containing block",
  7670. "computedValue": "as specified, with <length-percentage> values computed",
  7671. "canonicalOrder": "per grammar",
  7672. "animationType": "by computed value, recursing into fit-content()",
  7673. "logicalPropertyGroup": "min-size",
  7674. "styleDeclaration": [
  7675. "min-height",
  7676. "minHeight"
  7677. ],
  7678. "syntax": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
  7679. "extended": [
  7680. "https://drafts.csswg.org/css-anchor-position-1/",
  7681. "https://drafts.csswg.org/css-sizing-4/"
  7682. ]
  7683. }
  7684. ],
  7685. [
  7686. "min-inline-size",
  7687. {
  7688. "name": "min-inline-size",
  7689. "href": "https://drafts.csswg.org/css-logical-1/#propdef-min-inline-size",
  7690. "initial": "0",
  7691. "appliesTo": "same as height and width",
  7692. "inherited": "no",
  7693. "percentages": "As for the corresponding physical property",
  7694. "computedValue": "Same as min-height, min-width",
  7695. "canonicalOrder": "per grammar",
  7696. "animationType": "by computed value type",
  7697. "logicalPropertyGroup": "min-size",
  7698. "styleDeclaration": [
  7699. "min-inline-size",
  7700. "minInlineSize"
  7701. ],
  7702. "syntax": "<'min-width'>",
  7703. "extended": []
  7704. }
  7705. ],
  7706. [
  7707. "min-intrinsic-sizing",
  7708. {
  7709. "name": "min-intrinsic-sizing",
  7710. "href": "https://drafts.csswg.org/css-sizing-4/#propdef-min-intrinsic-sizing",
  7711. "initial": "legacy",
  7712. "appliesTo": "all elements except inline boxes",
  7713. "inherited": "no",
  7714. "percentages": "n/a",
  7715. "computedValue": "as specified",
  7716. "canonicalOrder": "per grammar",
  7717. "animationType": "discrete",
  7718. "styleDeclaration": [
  7719. "min-intrinsic-sizing",
  7720. "minIntrinsicSizing"
  7721. ],
  7722. "syntax": "legacy | zero-if-scroll || zero-if-extrinsic",
  7723. "extended": []
  7724. }
  7725. ],
  7726. [
  7727. "min-width",
  7728. {
  7729. "name": "min-width",
  7730. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-min-width",
  7731. "initial": "auto",
  7732. "appliesTo": "all elements that accept width or height",
  7733. "inherited": "no",
  7734. "percentages": "relative to width/height of containing block",
  7735. "computedValue": "as specified, with <length-percentage> values computed",
  7736. "canonicalOrder": "per grammar",
  7737. "animationType": "by computed value, recursing into fit-content()",
  7738. "logicalPropertyGroup": "min-size",
  7739. "styleDeclaration": [
  7740. "min-width",
  7741. "minWidth"
  7742. ],
  7743. "syntax": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
  7744. "extended": [
  7745. "https://drafts.csswg.org/css-anchor-position-1/",
  7746. "https://drafts.csswg.org/css-sizing-4/"
  7747. ]
  7748. }
  7749. ],
  7750. [
  7751. "mix-blend-mode",
  7752. {
  7753. "name": "mix-blend-mode",
  7754. "href": "https://drafts.fxtf.org/compositing-2/#propdef-mix-blend-mode",
  7755. "initial": "normal",
  7756. "appliesTo": "All elements. In SVG, it applies to container elements, graphics elements and graphics referencing elements. [SVG11]",
  7757. "inherited": "no",
  7758. "percentages": "N/A",
  7759. "computedValue": "as specified",
  7760. "canonicalOrder": "per grammar",
  7761. "media": "visual",
  7762. "animatable": "no",
  7763. "styleDeclaration": [
  7764. "mix-blend-mode",
  7765. "mixBlendMode"
  7766. ],
  7767. "syntax": "<blend-mode> | plus-darker | plus-lighter",
  7768. "extended": []
  7769. }
  7770. ],
  7771. [
  7772. "nav-down",
  7773. {
  7774. "name": "nav-down",
  7775. "href": "https://drafts.csswg.org/css-ui-4/#propdef-nav-down",
  7776. "initial": "auto",
  7777. "appliesTo": "all enabled elements",
  7778. "inherited": "no",
  7779. "percentages": "N/A",
  7780. "computedValue": "as specified",
  7781. "canonicalOrder": "per grammar",
  7782. "animationType": "discrete",
  7783. "styleDeclaration": [
  7784. "nav-down",
  7785. "navDown"
  7786. ],
  7787. "syntax": "auto | <id> [ current | root | <target-name> ]?",
  7788. "extended": []
  7789. }
  7790. ],
  7791. [
  7792. "nav-left",
  7793. {
  7794. "name": "nav-left",
  7795. "href": "https://drafts.csswg.org/css-ui-4/#propdef-nav-left",
  7796. "initial": "auto",
  7797. "appliesTo": "all enabled elements",
  7798. "inherited": "no",
  7799. "percentages": "N/A",
  7800. "computedValue": "as specified",
  7801. "canonicalOrder": "per grammar",
  7802. "animationType": "discrete",
  7803. "styleDeclaration": [
  7804. "nav-left",
  7805. "navLeft"
  7806. ],
  7807. "syntax": "auto | <id> [ current | root | <target-name> ]?",
  7808. "extended": []
  7809. }
  7810. ],
  7811. [
  7812. "nav-right",
  7813. {
  7814. "name": "nav-right",
  7815. "href": "https://drafts.csswg.org/css-ui-4/#propdef-nav-right",
  7816. "initial": "auto",
  7817. "appliesTo": "all enabled elements",
  7818. "inherited": "no",
  7819. "percentages": "N/A",
  7820. "computedValue": "as specified",
  7821. "canonicalOrder": "per grammar",
  7822. "animationType": "discrete",
  7823. "styleDeclaration": [
  7824. "nav-right",
  7825. "navRight"
  7826. ],
  7827. "syntax": "auto | <id> [ current | root | <target-name> ]?",
  7828. "extended": []
  7829. }
  7830. ],
  7831. [
  7832. "nav-up",
  7833. {
  7834. "name": "nav-up",
  7835. "href": "https://drafts.csswg.org/css-ui-4/#propdef-nav-up",
  7836. "initial": "auto",
  7837. "appliesTo": "all enabled elements",
  7838. "inherited": "no",
  7839. "percentages": "N/A",
  7840. "computedValue": "as specified",
  7841. "canonicalOrder": "per grammar",
  7842. "animationType": "discrete",
  7843. "styleDeclaration": [
  7844. "nav-up",
  7845. "navUp"
  7846. ],
  7847. "syntax": "auto | <id> [ current | root | <target-name> ]?",
  7848. "extended": []
  7849. }
  7850. ],
  7851. [
  7852. "object-fit",
  7853. {
  7854. "name": "object-fit",
  7855. "href": "https://drafts.csswg.org/css-images-4/#propdef-object-fit",
  7856. "initial": "fill",
  7857. "appliesTo": "replaced elements",
  7858. "inherited": "no",
  7859. "percentages": "n/a",
  7860. "computedValue": "specified keyword(s)",
  7861. "canonicalOrder": "per grammar",
  7862. "animationType": "discrete",
  7863. "styleDeclaration": [
  7864. "object-fit",
  7865. "objectFit"
  7866. ],
  7867. "syntax": "fill | none | [contain | cover] || scale-down",
  7868. "extended": []
  7869. }
  7870. ],
  7871. [
  7872. "object-position",
  7873. {
  7874. "name": "object-position",
  7875. "href": "https://drafts.csswg.org/css-images-3/#propdef-object-position",
  7876. "initial": "50% 50%",
  7877. "appliesTo": "replaced elements",
  7878. "inherited": "no",
  7879. "percentages": "refer to width and height of element itself",
  7880. "computedValue": "as for background-position",
  7881. "canonicalOrder": "the horizontal component of the <position>, followed by the vertical component",
  7882. "animationType": "as for background-position",
  7883. "styleDeclaration": [
  7884. "object-position",
  7885. "objectPosition"
  7886. ],
  7887. "syntax": "<position>",
  7888. "extended": []
  7889. }
  7890. ],
  7891. [
  7892. "offset",
  7893. {
  7894. "name": "offset",
  7895. "href": "https://drafts.fxtf.org/motion-1/#propdef-offset",
  7896. "initial": "see individual properties",
  7897. "appliesTo": "transformable elements",
  7898. "inherited": "see individual properties",
  7899. "percentages": "see individual properties",
  7900. "computedValue": "see individual properties",
  7901. "animationType": "see individual properties",
  7902. "canonicalOrder": "per grammar",
  7903. "styleDeclaration": [
  7904. "offset"
  7905. ],
  7906. "syntax": "[ <'offset-position'>? [ <'offset-path'> [ <'offset-distance'> || <'offset-rotate'> ]? ]? ]! [ / <'offset-anchor'> ]?",
  7907. "extended": []
  7908. }
  7909. ],
  7910. [
  7911. "offset-anchor",
  7912. {
  7913. "name": "offset-anchor",
  7914. "href": "https://drafts.fxtf.org/motion-1/#propdef-offset-anchor",
  7915. "initial": "auto",
  7916. "appliesTo": "transformable elements",
  7917. "inherited": "no",
  7918. "percentages": "relative to the width and the height of the element’s reference box",
  7919. "computedValue": "the auto keyword or a computed <position>",
  7920. "canonicalOrder": "per grammar",
  7921. "animationType": "by computed value",
  7922. "media": "visual",
  7923. "styleDeclaration": [
  7924. "offset-anchor",
  7925. "offsetAnchor"
  7926. ],
  7927. "syntax": "auto | <position>",
  7928. "extended": []
  7929. }
  7930. ],
  7931. [
  7932. "offset-distance",
  7933. {
  7934. "name": "offset-distance",
  7935. "href": "https://drafts.fxtf.org/motion-1/#propdef-offset-distance",
  7936. "initial": "0",
  7937. "appliesTo": "transformable elements",
  7938. "inherited": "no",
  7939. "percentages": "relative to the offset path length",
  7940. "computedValue": "a computed <length-percentage> value",
  7941. "canonicalOrder": "per grammar",
  7942. "animationType": "by computed value",
  7943. "media": "visual",
  7944. "styleDeclaration": [
  7945. "offset-distance",
  7946. "offsetDistance"
  7947. ],
  7948. "syntax": "<length-percentage>",
  7949. "extended": []
  7950. }
  7951. ],
  7952. [
  7953. "offset-path",
  7954. {
  7955. "name": "offset-path",
  7956. "href": "https://drafts.fxtf.org/motion-1/#propdef-offset-path",
  7957. "initial": "none",
  7958. "appliesTo": "transformable elements",
  7959. "inherited": "no",
  7960. "percentages": "n/a",
  7961. "computedValue": "as specified",
  7962. "canonicalOrder": "per grammar",
  7963. "animationType": "by computed value",
  7964. "media": "visual",
  7965. "styleDeclaration": [
  7966. "offset-path",
  7967. "offsetPath"
  7968. ],
  7969. "syntax": "none | <offset-path> || <coord-box>",
  7970. "extended": []
  7971. }
  7972. ],
  7973. [
  7974. "offset-position",
  7975. {
  7976. "name": "offset-position",
  7977. "href": "https://drafts.fxtf.org/motion-1/#propdef-offset-position",
  7978. "initial": "normal",
  7979. "appliesTo": "transformable elements",
  7980. "inherited": "no",
  7981. "percentages": "Refer to the size of containing block",
  7982. "computedValue": "The normal or auto keywords, or a computed <position>",
  7983. "canonicalOrder": "per grammar",
  7984. "animationType": "by computed value",
  7985. "media": "visual",
  7986. "styleDeclaration": [
  7987. "offset-position",
  7988. "offsetPosition"
  7989. ],
  7990. "syntax": "normal | auto | <position>",
  7991. "extended": []
  7992. }
  7993. ],
  7994. [
  7995. "offset-rotate",
  7996. {
  7997. "name": "offset-rotate",
  7998. "href": "https://drafts.fxtf.org/motion-1/#propdef-offset-rotate",
  7999. "initial": "auto",
  8000. "appliesTo": "transformable elements",
  8001. "inherited": "no",
  8002. "percentages": "n/a",
  8003. "computedValue": "computed <angle> value, optionally preceded by auto",
  8004. "canonicalOrder": "per grammar",
  8005. "animationType": "by computed value",
  8006. "media": "visual",
  8007. "styleDeclaration": [
  8008. "offset-rotate",
  8009. "offsetRotate"
  8010. ],
  8011. "syntax": "[ auto | reverse ] || <angle>",
  8012. "extended": []
  8013. }
  8014. ],
  8015. [
  8016. "opacity",
  8017. {
  8018. "name": "opacity",
  8019. "href": "https://drafts.csswg.org/css-color-4/#propdef-opacity",
  8020. "initial": "1",
  8021. "appliesTo": "all elements",
  8022. "inherited": "no",
  8023. "percentages": "map to the range [0,1]",
  8024. "computedValue": "specified number, clamped to the range [0,1]",
  8025. "canonicalOrder": "per grammar",
  8026. "animationType": "by computed value type",
  8027. "styleDeclaration": [
  8028. "opacity"
  8029. ],
  8030. "syntax": "<opacity-value>",
  8031. "extended": []
  8032. }
  8033. ],
  8034. [
  8035. "order",
  8036. {
  8037. "name": "order",
  8038. "href": "https://drafts.csswg.org/css-display-4/#propdef-order",
  8039. "initial": "0",
  8040. "appliesTo": "flex items and grid items",
  8041. "inherited": "no",
  8042. "percentages": "n/a",
  8043. "computedValue": "specified integer",
  8044. "canonicalOrder": "per grammar",
  8045. "animationType": "by computed value type",
  8046. "styleDeclaration": [
  8047. "order"
  8048. ],
  8049. "syntax": "<integer>",
  8050. "extended": []
  8051. }
  8052. ],
  8053. [
  8054. "orphans",
  8055. {
  8056. "name": "orphans",
  8057. "href": "https://drafts.csswg.org/css-break-4/#propdef-orphans",
  8058. "initial": "2",
  8059. "appliesTo": "block containers that establish an inline formatting context",
  8060. "inherited": "yes",
  8061. "percentages": "n/a",
  8062. "computedValue": "specified integer",
  8063. "canonicalOrder": "per grammar",
  8064. "animationType": "by computed value type",
  8065. "styleDeclaration": [
  8066. "orphans"
  8067. ],
  8068. "syntax": "<integer [1,∞]>",
  8069. "extended": []
  8070. }
  8071. ],
  8072. [
  8073. "outline",
  8074. {
  8075. "name": "outline",
  8076. "href": "https://drafts.csswg.org/css-ui-4/#propdef-outline",
  8077. "initial": "see individual properties",
  8078. "appliesTo": "all elements",
  8079. "inherited": "no",
  8080. "percentages": "N/A",
  8081. "computedValue": "see individual properties",
  8082. "animationType": "see individual properties",
  8083. "canonicalOrder": "per grammar",
  8084. "styleDeclaration": [
  8085. "outline"
  8086. ],
  8087. "syntax": "<'outline-width'> || <'outline-style'> || <'outline-color'>",
  8088. "extended": []
  8089. }
  8090. ],
  8091. [
  8092. "outline-color",
  8093. {
  8094. "name": "outline-color",
  8095. "href": "https://drafts.csswg.org/css-ui-4/#propdef-outline-color",
  8096. "initial": "auto",
  8097. "appliesTo": "all elements",
  8098. "inherited": "no",
  8099. "percentages": "N/A",
  8100. "computedValue": "see below",
  8101. "canonicalOrder": "per grammar",
  8102. "animationType": "by computed value",
  8103. "styleDeclaration": [
  8104. "outline-color",
  8105. "outlineColor"
  8106. ],
  8107. "syntax": "auto | <'border-top-color'>",
  8108. "extended": []
  8109. }
  8110. ],
  8111. [
  8112. "outline-offset",
  8113. {
  8114. "name": "outline-offset",
  8115. "href": "https://drafts.csswg.org/css-ui-4/#propdef-outline-offset",
  8116. "initial": "0",
  8117. "appliesTo": "all elements",
  8118. "inherited": "no",
  8119. "percentages": "N/A",
  8120. "computedValue": "absolute length",
  8121. "canonicalOrder": "per grammar",
  8122. "animationType": "by computed value",
  8123. "styleDeclaration": [
  8124. "outline-offset",
  8125. "outlineOffset"
  8126. ],
  8127. "syntax": "<length>",
  8128. "extended": []
  8129. }
  8130. ],
  8131. [
  8132. "outline-style",
  8133. {
  8134. "name": "outline-style",
  8135. "href": "https://drafts.csswg.org/css-ui-4/#propdef-outline-style",
  8136. "initial": "none",
  8137. "appliesTo": "all elements",
  8138. "inherited": "no",
  8139. "percentages": "N/A",
  8140. "computedValue": "specified keyword",
  8141. "canonicalOrder": "per grammar",
  8142. "animationType": "by computed value",
  8143. "styleDeclaration": [
  8144. "outline-style",
  8145. "outlineStyle"
  8146. ],
  8147. "syntax": "auto | <outline-line-style>",
  8148. "extended": []
  8149. }
  8150. ],
  8151. [
  8152. "outline-width",
  8153. {
  8154. "name": "outline-width",
  8155. "href": "https://drafts.csswg.org/css-ui-4/#propdef-outline-width",
  8156. "initial": "medium",
  8157. "appliesTo": "all elements",
  8158. "inherited": "no",
  8159. "percentages": "N/A",
  8160. "computedValue": "absolute length, snapped as a border width",
  8161. "canonicalOrder": "per grammar",
  8162. "animationType": "by computed value",
  8163. "styleDeclaration": [
  8164. "outline-width",
  8165. "outlineWidth"
  8166. ],
  8167. "syntax": "<line-width>",
  8168. "extended": []
  8169. }
  8170. ],
  8171. [
  8172. "overflow",
  8173. {
  8174. "name": "overflow",
  8175. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow",
  8176. "initial": "visible",
  8177. "appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], and grid containers [CSS3-GRID-LAYOUT]",
  8178. "inherited": "no",
  8179. "percentages": "N/A",
  8180. "computedValue": "see individual properties",
  8181. "animationType": "discrete",
  8182. "canonicalOrder": "per grammar",
  8183. "styleDeclaration": [
  8184. "overflow"
  8185. ],
  8186. "syntax": "<'overflow-block'>{1,2}",
  8187. "extended": []
  8188. }
  8189. ],
  8190. [
  8191. "overflow-anchor",
  8192. {
  8193. "name": "overflow-anchor",
  8194. "href": "https://drafts.csswg.org/css-scroll-anchoring-1/#propdef-overflow-anchor",
  8195. "initial": "auto",
  8196. "appliesTo": "all elements",
  8197. "inherited": "no",
  8198. "percentages": "n/a",
  8199. "computedValue": "specified keyword",
  8200. "canonicalOrder": "per grammar",
  8201. "animationType": "discrete",
  8202. "styleDeclaration": [
  8203. "overflow-anchor",
  8204. "overflowAnchor"
  8205. ],
  8206. "syntax": "auto | none",
  8207. "extended": []
  8208. }
  8209. ],
  8210. [
  8211. "overflow-block",
  8212. {
  8213. "name": "overflow-block",
  8214. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow-block",
  8215. "initial": "visible",
  8216. "appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], grid containers [CSS3-GRID-LAYOUT]",
  8217. "inherited": "no",
  8218. "percentages": "N/A",
  8219. "computedValue": "usually specified value, but see text",
  8220. "canonicalOrder": "per grammar",
  8221. "animationType": "discrete",
  8222. "logicalPropertyGroup": "overflow",
  8223. "styleDeclaration": [
  8224. "overflow-block",
  8225. "overflowBlock"
  8226. ],
  8227. "syntax": "visible | hidden | clip | scroll | auto",
  8228. "extended": []
  8229. }
  8230. ],
  8231. [
  8232. "overflow-clip-margin",
  8233. {
  8234. "name": "overflow-clip-margin",
  8235. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin",
  8236. "initial": "0px",
  8237. "appliesTo": "boxes to which overflow applies",
  8238. "inherited": "no",
  8239. "percentages": "see individual properties",
  8240. "computedValue": "see individual properties",
  8241. "animationType": "see individual properties",
  8242. "canonicalOrder": "per grammar",
  8243. "styleDeclaration": [
  8244. "overflow-clip-margin",
  8245. "overflowClipMargin"
  8246. ],
  8247. "syntax": "<visual-box> || <length [0,∞]>",
  8248. "extended": []
  8249. }
  8250. ],
  8251. [
  8252. "overflow-clip-margin-block",
  8253. {
  8254. "name": "overflow-clip-margin-block",
  8255. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-block",
  8256. "initial": "0px",
  8257. "appliesTo": "boxes to which overflow applies",
  8258. "inherited": "no",
  8259. "percentages": "see individual properties",
  8260. "computedValue": "see individual properties",
  8261. "animationType": "see individual properties",
  8262. "canonicalOrder": "per grammar",
  8263. "styleDeclaration": [
  8264. "overflow-clip-margin-block",
  8265. "overflowClipMarginBlock"
  8266. ],
  8267. "syntax": "<visual-box> || <length [0,∞]>",
  8268. "extended": []
  8269. }
  8270. ],
  8271. [
  8272. "overflow-clip-margin-block-end",
  8273. {
  8274. "name": "overflow-clip-margin-block-end",
  8275. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-block-end",
  8276. "initial": "0px",
  8277. "appliesTo": "boxes to which overflow applies",
  8278. "inherited": "no",
  8279. "percentages": "see individual properties",
  8280. "computedValue": "the computed <length> and a <visual-box> keyword",
  8281. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8282. "canonicalOrder": "per grammar",
  8283. "logicalPropertyGroup": "overflow-clip-margin",
  8284. "styleDeclaration": [
  8285. "overflow-clip-margin-block-end",
  8286. "overflowClipMarginBlockEnd"
  8287. ],
  8288. "syntax": "<visual-box> || <length [0,∞]>",
  8289. "extended": []
  8290. }
  8291. ],
  8292. [
  8293. "overflow-clip-margin-block-start",
  8294. {
  8295. "name": "overflow-clip-margin-block-start",
  8296. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-block-start",
  8297. "initial": "0px",
  8298. "appliesTo": "boxes to which overflow applies",
  8299. "inherited": "no",
  8300. "percentages": "see individual properties",
  8301. "computedValue": "the computed <length> and a <visual-box> keyword",
  8302. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8303. "canonicalOrder": "per grammar",
  8304. "logicalPropertyGroup": "overflow-clip-margin",
  8305. "styleDeclaration": [
  8306. "overflow-clip-margin-block-start",
  8307. "overflowClipMarginBlockStart"
  8308. ],
  8309. "syntax": "<visual-box> || <length [0,∞]>",
  8310. "extended": []
  8311. }
  8312. ],
  8313. [
  8314. "overflow-clip-margin-bottom",
  8315. {
  8316. "name": "overflow-clip-margin-bottom",
  8317. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-bottom",
  8318. "initial": "0px",
  8319. "appliesTo": "boxes to which overflow applies",
  8320. "inherited": "no",
  8321. "percentages": "see individual properties",
  8322. "computedValue": "the computed <length> and a <visual-box> keyword",
  8323. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8324. "canonicalOrder": "per grammar",
  8325. "logicalPropertyGroup": "overflow-clip-margin",
  8326. "styleDeclaration": [
  8327. "overflow-clip-margin-bottom",
  8328. "overflowClipMarginBottom"
  8329. ],
  8330. "syntax": "<visual-box> || <length [0,∞]>",
  8331. "extended": []
  8332. }
  8333. ],
  8334. [
  8335. "overflow-clip-margin-inline",
  8336. {
  8337. "name": "overflow-clip-margin-inline",
  8338. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-inline",
  8339. "initial": "0px",
  8340. "appliesTo": "boxes to which overflow applies",
  8341. "inherited": "no",
  8342. "percentages": "see individual properties",
  8343. "computedValue": "see individual properties",
  8344. "animationType": "see individual properties",
  8345. "canonicalOrder": "per grammar",
  8346. "styleDeclaration": [
  8347. "overflow-clip-margin-inline",
  8348. "overflowClipMarginInline"
  8349. ],
  8350. "syntax": "<visual-box> || <length [0,∞]>",
  8351. "extended": []
  8352. }
  8353. ],
  8354. [
  8355. "overflow-clip-margin-inline-end",
  8356. {
  8357. "name": "overflow-clip-margin-inline-end",
  8358. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-inline-end",
  8359. "initial": "0px",
  8360. "appliesTo": "boxes to which overflow applies",
  8361. "inherited": "no",
  8362. "percentages": "see individual properties",
  8363. "computedValue": "the computed <length> and a <visual-box> keyword",
  8364. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8365. "canonicalOrder": "per grammar",
  8366. "logicalPropertyGroup": "overflow-clip-margin",
  8367. "styleDeclaration": [
  8368. "overflow-clip-margin-inline-end",
  8369. "overflowClipMarginInlineEnd"
  8370. ],
  8371. "syntax": "<visual-box> || <length [0,∞]>",
  8372. "extended": []
  8373. }
  8374. ],
  8375. [
  8376. "overflow-clip-margin-inline-start",
  8377. {
  8378. "name": "overflow-clip-margin-inline-start",
  8379. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-inline-start",
  8380. "initial": "0px",
  8381. "appliesTo": "boxes to which overflow applies",
  8382. "inherited": "no",
  8383. "percentages": "see individual properties",
  8384. "computedValue": "the computed <length> and a <visual-box> keyword",
  8385. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8386. "canonicalOrder": "per grammar",
  8387. "logicalPropertyGroup": "overflow-clip-margin",
  8388. "styleDeclaration": [
  8389. "overflow-clip-margin-inline-start",
  8390. "overflowClipMarginInlineStart"
  8391. ],
  8392. "syntax": "<visual-box> || <length [0,∞]>",
  8393. "extended": []
  8394. }
  8395. ],
  8396. [
  8397. "overflow-clip-margin-left",
  8398. {
  8399. "name": "overflow-clip-margin-left",
  8400. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-left",
  8401. "initial": "0px",
  8402. "appliesTo": "boxes to which overflow applies",
  8403. "inherited": "no",
  8404. "percentages": "see individual properties",
  8405. "computedValue": "the computed <length> and a <visual-box> keyword",
  8406. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8407. "canonicalOrder": "per grammar",
  8408. "logicalPropertyGroup": "overflow-clip-margin",
  8409. "styleDeclaration": [
  8410. "overflow-clip-margin-left",
  8411. "overflowClipMarginLeft"
  8412. ],
  8413. "syntax": "<visual-box> || <length [0,∞]>",
  8414. "extended": []
  8415. }
  8416. ],
  8417. [
  8418. "overflow-clip-margin-right",
  8419. {
  8420. "name": "overflow-clip-margin-right",
  8421. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-right",
  8422. "initial": "0px",
  8423. "appliesTo": "boxes to which overflow applies",
  8424. "inherited": "no",
  8425. "percentages": "see individual properties",
  8426. "computedValue": "the computed <length> and a <visual-box> keyword",
  8427. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8428. "canonicalOrder": "per grammar",
  8429. "logicalPropertyGroup": "overflow-clip-margin",
  8430. "styleDeclaration": [
  8431. "overflow-clip-margin-right",
  8432. "overflowClipMarginRight"
  8433. ],
  8434. "syntax": "<visual-box> || <length [0,∞]>",
  8435. "extended": []
  8436. }
  8437. ],
  8438. [
  8439. "overflow-clip-margin-top",
  8440. {
  8441. "name": "overflow-clip-margin-top",
  8442. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-overflow-clip-margin-top",
  8443. "initial": "0px",
  8444. "appliesTo": "boxes to which overflow applies",
  8445. "inherited": "no",
  8446. "percentages": "see individual properties",
  8447. "computedValue": "the computed <length> and a <visual-box> keyword",
  8448. "animationType": "per computed value if the <visual-box> values match; otherwise discrete",
  8449. "canonicalOrder": "per grammar",
  8450. "logicalPropertyGroup": "overflow-clip-margin",
  8451. "styleDeclaration": [
  8452. "overflow-clip-margin-top",
  8453. "overflowClipMarginTop"
  8454. ],
  8455. "syntax": "<visual-box> || <length [0,∞]>",
  8456. "extended": []
  8457. }
  8458. ],
  8459. [
  8460. "overflow-inline",
  8461. {
  8462. "name": "overflow-inline",
  8463. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow-inline",
  8464. "initial": "visible",
  8465. "appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], grid containers [CSS3-GRID-LAYOUT]",
  8466. "inherited": "no",
  8467. "percentages": "N/A",
  8468. "computedValue": "usually specified value, but see text",
  8469. "canonicalOrder": "per grammar",
  8470. "animationType": "discrete",
  8471. "logicalPropertyGroup": "overflow",
  8472. "styleDeclaration": [
  8473. "overflow-inline",
  8474. "overflowInline"
  8475. ],
  8476. "syntax": "visible | hidden | clip | scroll | auto",
  8477. "extended": []
  8478. }
  8479. ],
  8480. [
  8481. "overflow-wrap",
  8482. {
  8483. "name": "overflow-wrap",
  8484. "href": "https://drafts.csswg.org/css-text-4/#propdef-overflow-wrap",
  8485. "initial": "normal",
  8486. "appliesTo": "text",
  8487. "inherited": "yes",
  8488. "percentages": "n/a",
  8489. "computedValue": "specified keyword",
  8490. "canonicalOrder": "n/a",
  8491. "animationType": "discrete",
  8492. "styleDeclaration": [
  8493. "overflow-wrap",
  8494. "overflowWrap"
  8495. ],
  8496. "syntax": "normal | break-word | anywhere",
  8497. "extended": []
  8498. }
  8499. ],
  8500. [
  8501. "overflow-x",
  8502. {
  8503. "name": "overflow-x",
  8504. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow-x",
  8505. "initial": "visible",
  8506. "appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], grid containers [CSS3-GRID-LAYOUT]",
  8507. "inherited": "no",
  8508. "percentages": "N/A",
  8509. "computedValue": "usually specified value, but see text",
  8510. "canonicalOrder": "per grammar",
  8511. "animationType": "discrete",
  8512. "logicalPropertyGroup": "overflow",
  8513. "styleDeclaration": [
  8514. "overflow-x",
  8515. "overflowX"
  8516. ],
  8517. "syntax": "visible | hidden | clip | scroll | auto",
  8518. "extended": []
  8519. }
  8520. ],
  8521. [
  8522. "overflow-y",
  8523. {
  8524. "name": "overflow-y",
  8525. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-overflow-y",
  8526. "initial": "visible",
  8527. "appliesTo": "block containers [CSS2], flex containers [CSS3-FLEXBOX], grid containers [CSS3-GRID-LAYOUT]",
  8528. "inherited": "no",
  8529. "percentages": "N/A",
  8530. "computedValue": "usually specified value, but see text",
  8531. "canonicalOrder": "per grammar",
  8532. "animationType": "discrete",
  8533. "logicalPropertyGroup": "overflow",
  8534. "styleDeclaration": [
  8535. "overflow-y",
  8536. "overflowY"
  8537. ],
  8538. "syntax": "visible | hidden | clip | scroll | auto",
  8539. "extended": []
  8540. }
  8541. ],
  8542. [
  8543. "overlay",
  8544. {
  8545. "name": "overlay",
  8546. "href": "https://drafts.csswg.org/css-position-4/#propdef-overlay",
  8547. "initial": "none",
  8548. "appliesTo": "all elements",
  8549. "inherited": "no",
  8550. "percentages": "n/a",
  8551. "computedValue": "as specified",
  8552. "canonicalOrder": "per grammar",
  8553. "animationType": "see prose",
  8554. "styleDeclaration": [
  8555. "overlay"
  8556. ],
  8557. "syntax": "none | auto",
  8558. "extended": []
  8559. }
  8560. ],
  8561. [
  8562. "overscroll-behavior",
  8563. {
  8564. "name": "overscroll-behavior",
  8565. "href": "https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior",
  8566. "initial": "auto auto",
  8567. "appliesTo": "scroll container elements",
  8568. "inherited": "no",
  8569. "percentages": "n/a",
  8570. "computedValue": "see individual properties",
  8571. "canonicalOrder": "per grammar",
  8572. "animationType": "discrete",
  8573. "media": "visual",
  8574. "styleDeclaration": [
  8575. "overscroll-behavior",
  8576. "overscrollBehavior"
  8577. ],
  8578. "syntax": "[ contain | none | auto ]{1,2}",
  8579. "extended": []
  8580. }
  8581. ],
  8582. [
  8583. "overscroll-behavior-block",
  8584. {
  8585. "name": "overscroll-behavior-block",
  8586. "href": "https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior-block",
  8587. "initial": "auto",
  8588. "appliesTo": "scroll container elements",
  8589. "inherited": "no",
  8590. "percentages": "N/A",
  8591. "computedValue": "as specified",
  8592. "canonicalOrder": "per grammar",
  8593. "animationType": "discrete",
  8594. "logicalPropertyGroup": "overscroll-behavior",
  8595. "media": "visual",
  8596. "styleDeclaration": [
  8597. "overscroll-behavior-block",
  8598. "overscrollBehaviorBlock"
  8599. ],
  8600. "syntax": "contain | none | auto",
  8601. "extended": []
  8602. }
  8603. ],
  8604. [
  8605. "overscroll-behavior-inline",
  8606. {
  8607. "name": "overscroll-behavior-inline",
  8608. "href": "https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior-inline",
  8609. "initial": "auto",
  8610. "appliesTo": "scroll container elements",
  8611. "inherited": "no",
  8612. "percentages": "N/A",
  8613. "computedValue": "as specified",
  8614. "canonicalOrder": "per grammar",
  8615. "animationType": "discrete",
  8616. "logicalPropertyGroup": "overscroll-behavior",
  8617. "media": "visual",
  8618. "styleDeclaration": [
  8619. "overscroll-behavior-inline",
  8620. "overscrollBehaviorInline"
  8621. ],
  8622. "syntax": "contain | none | auto",
  8623. "extended": []
  8624. }
  8625. ],
  8626. [
  8627. "overscroll-behavior-x",
  8628. {
  8629. "name": "overscroll-behavior-x",
  8630. "href": "https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior-x",
  8631. "initial": "auto",
  8632. "appliesTo": "scroll container elements",
  8633. "inherited": "no",
  8634. "percentages": "N/A",
  8635. "computedValue": "as specified",
  8636. "canonicalOrder": "per grammar",
  8637. "animationType": "discrete",
  8638. "logicalPropertyGroup": "overscroll-behavior",
  8639. "media": "visual",
  8640. "styleDeclaration": [
  8641. "overscroll-behavior-x",
  8642. "overscrollBehaviorX"
  8643. ],
  8644. "syntax": "contain | none | auto",
  8645. "extended": []
  8646. }
  8647. ],
  8648. [
  8649. "overscroll-behavior-y",
  8650. {
  8651. "name": "overscroll-behavior-y",
  8652. "href": "https://drafts.csswg.org/css-overscroll-1/#propdef-overscroll-behavior-y",
  8653. "initial": "auto",
  8654. "appliesTo": "scroll container elements",
  8655. "inherited": "no",
  8656. "percentages": "N/A",
  8657. "computedValue": "as specified",
  8658. "canonicalOrder": "per grammar",
  8659. "animationType": "discrete",
  8660. "logicalPropertyGroup": "overscroll-behavior",
  8661. "media": "visual",
  8662. "styleDeclaration": [
  8663. "overscroll-behavior-y",
  8664. "overscrollBehaviorY"
  8665. ],
  8666. "syntax": "contain | none | auto",
  8667. "extended": []
  8668. }
  8669. ],
  8670. [
  8671. "padding",
  8672. {
  8673. "name": "padding",
  8674. "href": "https://drafts.csswg.org/css-box-4/#propdef-padding",
  8675. "initial": "0",
  8676. "appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
  8677. "inherited": "no",
  8678. "percentages": "refer to logical width of containing block",
  8679. "computedValue": "see individual properties",
  8680. "canonicalOrder": "per grammar",
  8681. "animationType": "by computed value type",
  8682. "styleDeclaration": [
  8683. "padding"
  8684. ],
  8685. "syntax": "<'padding-top'>{1,4}",
  8686. "extended": []
  8687. }
  8688. ],
  8689. [
  8690. "padding-block",
  8691. {
  8692. "name": "padding-block",
  8693. "href": "https://drafts.csswg.org/css-logical-1/#propdef-padding-block",
  8694. "initial": "see individual properties",
  8695. "appliesTo": "see individual properties",
  8696. "inherited": "see individual properties",
  8697. "percentages": "see individual properties",
  8698. "computedValue": "see individual properties",
  8699. "animationType": "see individual properties",
  8700. "canonicalOrder": "per grammar",
  8701. "styleDeclaration": [
  8702. "padding-block",
  8703. "paddingBlock"
  8704. ],
  8705. "syntax": "<'padding-top'>{1,2}",
  8706. "extended": []
  8707. }
  8708. ],
  8709. [
  8710. "padding-block-end",
  8711. {
  8712. "name": "padding-block-end",
  8713. "href": "https://drafts.csswg.org/css-logical-1/#propdef-padding-block-end",
  8714. "initial": "0",
  8715. "appliesTo": "Same as padding-top",
  8716. "inherited": "no",
  8717. "percentages": "As for the corresponding physical property",
  8718. "computedValue": "Same as corresponding padding-* properties",
  8719. "canonicalOrder": "per grammar",
  8720. "animationType": "by computed value type",
  8721. "logicalPropertyGroup": "padding",
  8722. "styleDeclaration": [
  8723. "padding-block-end",
  8724. "paddingBlockEnd"
  8725. ],
  8726. "syntax": "<'padding-top'>",
  8727. "extended": []
  8728. }
  8729. ],
  8730. [
  8731. "padding-block-start",
  8732. {
  8733. "name": "padding-block-start",
  8734. "href": "https://drafts.csswg.org/css-logical-1/#propdef-padding-block-start",
  8735. "initial": "0",
  8736. "appliesTo": "Same as padding-top",
  8737. "inherited": "no",
  8738. "percentages": "As for the corresponding physical property",
  8739. "computedValue": "Same as corresponding padding-* properties",
  8740. "canonicalOrder": "per grammar",
  8741. "animationType": "by computed value type",
  8742. "logicalPropertyGroup": "padding",
  8743. "styleDeclaration": [
  8744. "padding-block-start",
  8745. "paddingBlockStart"
  8746. ],
  8747. "syntax": "<'padding-top'>",
  8748. "extended": []
  8749. }
  8750. ],
  8751. [
  8752. "padding-bottom",
  8753. {
  8754. "name": "padding-bottom",
  8755. "href": "https://drafts.csswg.org/css-box-4/#propdef-padding-bottom",
  8756. "initial": "0",
  8757. "appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
  8758. "inherited": "no",
  8759. "percentages": "refer to logical width of containing block",
  8760. "computedValue": "a computed <length-percentage> value",
  8761. "canonicalOrder": "per grammar",
  8762. "animationType": "by computed value type",
  8763. "logicalPropertyGroup": "padding",
  8764. "styleDeclaration": [
  8765. "padding-bottom",
  8766. "paddingBottom"
  8767. ],
  8768. "syntax": "<length-percentage [0,∞]>",
  8769. "extended": []
  8770. }
  8771. ],
  8772. [
  8773. "padding-inline",
  8774. {
  8775. "name": "padding-inline",
  8776. "href": "https://drafts.csswg.org/css-logical-1/#propdef-padding-inline",
  8777. "initial": "see individual properties",
  8778. "appliesTo": "see individual properties",
  8779. "inherited": "see individual properties",
  8780. "percentages": "see individual properties",
  8781. "computedValue": "see individual properties",
  8782. "animationType": "see individual properties",
  8783. "canonicalOrder": "per grammar",
  8784. "styleDeclaration": [
  8785. "padding-inline",
  8786. "paddingInline"
  8787. ],
  8788. "syntax": "<'padding-top'>{1,2}",
  8789. "extended": []
  8790. }
  8791. ],
  8792. [
  8793. "padding-inline-end",
  8794. {
  8795. "name": "padding-inline-end",
  8796. "href": "https://drafts.csswg.org/css-logical-1/#propdef-padding-inline-end",
  8797. "initial": "0",
  8798. "appliesTo": "Same as padding-top",
  8799. "inherited": "no",
  8800. "percentages": "As for the corresponding physical property",
  8801. "computedValue": "Same as corresponding padding-* properties",
  8802. "canonicalOrder": "per grammar",
  8803. "animationType": "by computed value type",
  8804. "logicalPropertyGroup": "padding",
  8805. "styleDeclaration": [
  8806. "padding-inline-end",
  8807. "paddingInlineEnd"
  8808. ],
  8809. "syntax": "<'padding-top'>",
  8810. "extended": []
  8811. }
  8812. ],
  8813. [
  8814. "padding-inline-start",
  8815. {
  8816. "name": "padding-inline-start",
  8817. "href": "https://drafts.csswg.org/css-logical-1/#propdef-padding-inline-start",
  8818. "initial": "0",
  8819. "appliesTo": "Same as padding-top",
  8820. "inherited": "no",
  8821. "percentages": "As for the corresponding physical property",
  8822. "computedValue": "Same as corresponding padding-* properties",
  8823. "canonicalOrder": "per grammar",
  8824. "animationType": "by computed value type",
  8825. "logicalPropertyGroup": "padding",
  8826. "styleDeclaration": [
  8827. "padding-inline-start",
  8828. "paddingInlineStart"
  8829. ],
  8830. "syntax": "<'padding-top'>",
  8831. "extended": []
  8832. }
  8833. ],
  8834. [
  8835. "padding-left",
  8836. {
  8837. "name": "padding-left",
  8838. "href": "https://drafts.csswg.org/css-box-4/#propdef-padding-left",
  8839. "initial": "0",
  8840. "appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
  8841. "inherited": "no",
  8842. "percentages": "refer to logical width of containing block",
  8843. "computedValue": "a computed <length-percentage> value",
  8844. "canonicalOrder": "per grammar",
  8845. "animationType": "by computed value type",
  8846. "logicalPropertyGroup": "padding",
  8847. "styleDeclaration": [
  8848. "padding-left",
  8849. "paddingLeft"
  8850. ],
  8851. "syntax": "<length-percentage [0,∞]>",
  8852. "extended": []
  8853. }
  8854. ],
  8855. [
  8856. "padding-right",
  8857. {
  8858. "name": "padding-right",
  8859. "href": "https://drafts.csswg.org/css-box-4/#propdef-padding-right",
  8860. "initial": "0",
  8861. "appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
  8862. "inherited": "no",
  8863. "percentages": "refer to logical width of containing block",
  8864. "computedValue": "a computed <length-percentage> value",
  8865. "canonicalOrder": "per grammar",
  8866. "animationType": "by computed value type",
  8867. "logicalPropertyGroup": "padding",
  8868. "styleDeclaration": [
  8869. "padding-right",
  8870. "paddingRight"
  8871. ],
  8872. "syntax": "<length-percentage [0,∞]>",
  8873. "extended": []
  8874. }
  8875. ],
  8876. [
  8877. "padding-top",
  8878. {
  8879. "name": "padding-top",
  8880. "href": "https://drafts.csswg.org/css-box-4/#propdef-padding-top",
  8881. "initial": "0",
  8882. "appliesTo": "all elements except: internal table elements other than table cells, ruby base containers, and ruby annotation containers",
  8883. "inherited": "no",
  8884. "percentages": "refer to logical width of containing block",
  8885. "computedValue": "a computed <length-percentage> value",
  8886. "canonicalOrder": "per grammar",
  8887. "animationType": "by computed value type",
  8888. "logicalPropertyGroup": "padding",
  8889. "styleDeclaration": [
  8890. "padding-top",
  8891. "paddingTop"
  8892. ],
  8893. "syntax": "<length-percentage [0,∞]>",
  8894. "extended": []
  8895. }
  8896. ],
  8897. [
  8898. "page",
  8899. {
  8900. "name": "page",
  8901. "href": "https://drafts.csswg.org/css-page-3/#propdef-page",
  8902. "initial": "auto",
  8903. "appliesTo": "boxes that create class A break points",
  8904. "inherited": "no (but see prose)",
  8905. "percentages": "n/a",
  8906. "computedValue": "specified value",
  8907. "canonicalOrder": "per grammar",
  8908. "animationType": "discrete",
  8909. "styleDeclaration": [
  8910. "page"
  8911. ],
  8912. "syntax": "auto | <custom-ident>",
  8913. "extended": []
  8914. }
  8915. ],
  8916. [
  8917. "page-break-after",
  8918. {
  8919. "name": "page-break-after",
  8920. "href": "https://drafts.csswg.org/css2/#propdef-page-break-after",
  8921. "initial": "auto",
  8922. "appliesTo": "block-level elements (but see text)",
  8923. "inherited": "no",
  8924. "percentages": "N/A",
  8925. "computedValue": "as specified",
  8926. "canonicalOrder": "per grammar",
  8927. "media": "visual, paged",
  8928. "styleDeclaration": [
  8929. "page-break-after",
  8930. "pageBreakAfter"
  8931. ],
  8932. "syntax": "auto | always | avoid | left | right | inherit",
  8933. "extended": []
  8934. }
  8935. ],
  8936. [
  8937. "page-break-before",
  8938. {
  8939. "name": "page-break-before",
  8940. "href": "https://drafts.csswg.org/css2/#propdef-page-break-before",
  8941. "initial": "auto",
  8942. "appliesTo": "block-level elements (but see text)",
  8943. "inherited": "no",
  8944. "percentages": "N/A",
  8945. "computedValue": "as specified",
  8946. "canonicalOrder": "per grammar",
  8947. "media": "visual, paged",
  8948. "styleDeclaration": [
  8949. "page-break-before",
  8950. "pageBreakBefore"
  8951. ],
  8952. "syntax": "auto | always | avoid | left | right | inherit",
  8953. "extended": []
  8954. }
  8955. ],
  8956. [
  8957. "page-break-inside",
  8958. {
  8959. "name": "page-break-inside",
  8960. "href": "https://drafts.csswg.org/css2/#propdef-page-break-inside",
  8961. "initial": "auto",
  8962. "appliesTo": "block-level elements (but see text)",
  8963. "inherited": "no",
  8964. "percentages": "N/A",
  8965. "computedValue": "as specified",
  8966. "canonicalOrder": "per grammar",
  8967. "media": "visual, paged",
  8968. "styleDeclaration": [
  8969. "page-break-inside",
  8970. "pageBreakInside"
  8971. ],
  8972. "syntax": "avoid | auto | inherit",
  8973. "extended": []
  8974. }
  8975. ],
  8976. [
  8977. "pause",
  8978. {
  8979. "name": "pause",
  8980. "href": "https://drafts.csswg.org/css-speech-1/#propdef-pause",
  8981. "initial": "see individual properties",
  8982. "appliesTo": "all elements",
  8983. "inherited": "no",
  8984. "percentages": "N/A",
  8985. "computedValue": "see individual properties",
  8986. "canonicalOrder": "per grammar",
  8987. "styleDeclaration": [
  8988. "pause"
  8989. ],
  8990. "syntax": "<'pause-before'> <'pause-after'>?",
  8991. "extended": []
  8992. }
  8993. ],
  8994. [
  8995. "pause-after",
  8996. {
  8997. "name": "pause-after",
  8998. "href": "https://drafts.csswg.org/css-speech-1/#propdef-pause-after",
  8999. "initial": "none",
  9000. "appliesTo": "all elements",
  9001. "inherited": "no",
  9002. "percentages": "N/A",
  9003. "computedValue": "specified value",
  9004. "canonicalOrder": "per grammar",
  9005. "styleDeclaration": [
  9006. "pause-after",
  9007. "pauseAfter"
  9008. ],
  9009. "syntax": "<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strong",
  9010. "extended": []
  9011. }
  9012. ],
  9013. [
  9014. "pause-before",
  9015. {
  9016. "name": "pause-before",
  9017. "href": "https://drafts.csswg.org/css-speech-1/#propdef-pause-before",
  9018. "initial": "none",
  9019. "appliesTo": "all elements",
  9020. "inherited": "no",
  9021. "percentages": "N/A",
  9022. "computedValue": "specified value",
  9023. "canonicalOrder": "per grammar",
  9024. "styleDeclaration": [
  9025. "pause-before",
  9026. "pauseBefore"
  9027. ],
  9028. "syntax": "<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strong",
  9029. "extended": []
  9030. }
  9031. ],
  9032. [
  9033. "perspective",
  9034. {
  9035. "name": "perspective",
  9036. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-perspective",
  9037. "initial": "none",
  9038. "appliesTo": "transformable elements",
  9039. "inherited": "no",
  9040. "percentages": "N/A",
  9041. "computedValue": "the keyword none or an absolute length",
  9042. "canonicalOrder": "per grammar",
  9043. "animationType": "by computed value",
  9044. "styleDeclaration": [
  9045. "perspective"
  9046. ],
  9047. "syntax": "none | <length [0,∞]>",
  9048. "extended": []
  9049. }
  9050. ],
  9051. [
  9052. "perspective-origin",
  9053. {
  9054. "name": "perspective-origin",
  9055. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-perspective-origin",
  9056. "initial": "50% 50%",
  9057. "appliesTo": "transformable elements",
  9058. "inherited": "no",
  9059. "percentages": "refer to the size of the reference box",
  9060. "computedValue": "see background-position",
  9061. "canonicalOrder": "per grammar",
  9062. "animationType": "by computed value",
  9063. "styleDeclaration": [
  9064. "perspective-origin",
  9065. "perspectiveOrigin"
  9066. ],
  9067. "syntax": "<position>",
  9068. "extended": []
  9069. }
  9070. ],
  9071. [
  9072. "place-content",
  9073. {
  9074. "name": "place-content",
  9075. "href": "https://drafts.csswg.org/css-align-3/#propdef-place-content",
  9076. "initial": "normal",
  9077. "appliesTo": "see individual properties",
  9078. "inherited": "no",
  9079. "percentages": "n/a",
  9080. "computedValue": "see individual properties",
  9081. "canonicalOrder": "per grammar",
  9082. "animationType": "discrete",
  9083. "styleDeclaration": [
  9084. "place-content",
  9085. "placeContent"
  9086. ],
  9087. "syntax": "<'align-content'> <'justify-content'>?",
  9088. "extended": []
  9089. }
  9090. ],
  9091. [
  9092. "place-items",
  9093. {
  9094. "name": "place-items",
  9095. "href": "https://drafts.csswg.org/css-align-3/#propdef-place-items",
  9096. "initial": "see individual properties",
  9097. "appliesTo": "all elements",
  9098. "inherited": "no",
  9099. "percentages": "n/a",
  9100. "computedValue": "see individual properties",
  9101. "canonicalOrder": "per grammar",
  9102. "animationType": "discrete",
  9103. "styleDeclaration": [
  9104. "place-items",
  9105. "placeItems"
  9106. ],
  9107. "syntax": "<'align-items'> <'justify-items'>?",
  9108. "extended": []
  9109. }
  9110. ],
  9111. [
  9112. "place-self",
  9113. {
  9114. "name": "place-self",
  9115. "href": "https://drafts.csswg.org/css-align-3/#propdef-place-self",
  9116. "initial": "auto",
  9117. "appliesTo": "see individual properties",
  9118. "inherited": "no",
  9119. "percentages": "n/a",
  9120. "computedValue": "see individual properties",
  9121. "canonicalOrder": "per grammar",
  9122. "animationType": "discrete",
  9123. "styleDeclaration": [
  9124. "place-self",
  9125. "placeSelf"
  9126. ],
  9127. "syntax": "<'align-self'> <'justify-self'>?",
  9128. "extended": []
  9129. }
  9130. ],
  9131. [
  9132. "pointer-events",
  9133. {
  9134. "name": "pointer-events",
  9135. "href": "https://svgwg.org/svg2-draft/interact.html#PointerEventsProperty",
  9136. "initial": "auto",
  9137. "appliesTo": "container elements, graphics elements and ‘use’",
  9138. "inherited": "yes",
  9139. "percentages": "N/A",
  9140. "media": "visual",
  9141. "computedValue": "as specified",
  9142. "animationType": "discrete",
  9143. "styleDeclaration": [
  9144. "pointer-events",
  9145. "pointerEvents"
  9146. ],
  9147. "syntax": "auto | bounding-box | visiblePainted | visibleFill | visibleStroke | visible | painted | fill | stroke | all | none",
  9148. "extended": []
  9149. }
  9150. ],
  9151. [
  9152. "position",
  9153. {
  9154. "name": "position",
  9155. "href": "https://drafts.csswg.org/css-position-3/#propdef-position",
  9156. "initial": "static",
  9157. "appliesTo": "all elements except table-column-group and table-column",
  9158. "inherited": "no",
  9159. "percentages": "N/A",
  9160. "computedValue": "specified keyword",
  9161. "canonicalOrder": "per grammar",
  9162. "animationType": "discrete",
  9163. "styleDeclaration": [
  9164. "position"
  9165. ],
  9166. "syntax": "static | relative | absolute | sticky | fixed | <running()>",
  9167. "extended": [
  9168. "https://drafts.csswg.org/css-gcpm-3/"
  9169. ]
  9170. }
  9171. ],
  9172. [
  9173. "position-anchor",
  9174. {
  9175. "name": "position-anchor",
  9176. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-position-anchor",
  9177. "initial": "auto",
  9178. "appliesTo": "absolutely positioned boxes",
  9179. "inherited": "no",
  9180. "percentages": "n/a",
  9181. "computedValue": "as specified",
  9182. "canonicalOrder": "per grammar",
  9183. "animationType": "discrete",
  9184. "styleDeclaration": [
  9185. "position-anchor",
  9186. "positionAnchor"
  9187. ],
  9188. "syntax": "auto | <anchor-name>",
  9189. "extended": []
  9190. }
  9191. ],
  9192. [
  9193. "position-area",
  9194. {
  9195. "name": "position-area",
  9196. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-position-area",
  9197. "initial": "none",
  9198. "appliesTo": "positioned boxes with a default anchor box",
  9199. "inherited": "no",
  9200. "percentages": "n/a",
  9201. "computedValue": "the keyword none or a pair of keywords, see § 3.1.3 Computed Value and Serialization of <position-area>",
  9202. "canonicalOrder": "per grammar",
  9203. "animationType": "TBD",
  9204. "styleDeclaration": [
  9205. "position-area",
  9206. "positionArea"
  9207. ],
  9208. "syntax": "none | <position-area>",
  9209. "extended": []
  9210. }
  9211. ],
  9212. [
  9213. "position-try",
  9214. {
  9215. "name": "position-try",
  9216. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try",
  9217. "initial": "see individual properties",
  9218. "appliesTo": "see individual properties",
  9219. "inherited": "see individual properties",
  9220. "percentages": "see individual properties",
  9221. "computedValue": "see individual properties",
  9222. "animationType": "see individual properties",
  9223. "canonicalOrder": "per grammar",
  9224. "styleDeclaration": [
  9225. "position-try",
  9226. "positionTry"
  9227. ],
  9228. "syntax": "<'position-try-order'>? <'position-try-fallbacks'>",
  9229. "extended": []
  9230. }
  9231. ],
  9232. [
  9233. "position-try-fallbacks",
  9234. {
  9235. "name": "position-try-fallbacks",
  9236. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try-fallbacks",
  9237. "initial": "none",
  9238. "appliesTo": "absolutely positioned boxes",
  9239. "inherited": "no",
  9240. "percentages": "n/a",
  9241. "computedValue": "as specified",
  9242. "canonicalOrder": "per grammar",
  9243. "animationType": "discrete",
  9244. "styleDeclaration": [
  9245. "position-try-fallbacks",
  9246. "positionTryFallbacks"
  9247. ],
  9248. "syntax": "none | [ [<dashed-ident> || <try-tactic>] | <position-area> ]#",
  9249. "extended": []
  9250. }
  9251. ],
  9252. [
  9253. "position-try-order",
  9254. {
  9255. "name": "position-try-order",
  9256. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-position-try-order",
  9257. "initial": "normal",
  9258. "appliesTo": "absolutely positioned boxes",
  9259. "inherited": "no",
  9260. "percentages": "n/a",
  9261. "computedValue": "as specified",
  9262. "canonicalOrder": "per grammar",
  9263. "animationType": "discrete",
  9264. "styleDeclaration": [
  9265. "position-try-order",
  9266. "positionTryOrder"
  9267. ],
  9268. "syntax": "normal | <try-size>",
  9269. "extended": []
  9270. }
  9271. ],
  9272. [
  9273. "position-visibility",
  9274. {
  9275. "name": "position-visibility",
  9276. "href": "https://drafts.csswg.org/css-anchor-position-1/#propdef-position-visibility",
  9277. "initial": "anchors-visible",
  9278. "appliesTo": "absolutely positioned boxes",
  9279. "inherited": "no",
  9280. "percentages": "n/a",
  9281. "computedValue": "as specified",
  9282. "canonicalOrder": "per grammar",
  9283. "animationType": "discrete",
  9284. "styleDeclaration": [
  9285. "position-visibility",
  9286. "positionVisibility"
  9287. ],
  9288. "syntax": "always | [ anchors-valid || anchors-visible || no-overflow ]",
  9289. "extended": []
  9290. }
  9291. ],
  9292. [
  9293. "print-color-adjust",
  9294. {
  9295. "name": "print-color-adjust",
  9296. "href": "https://drafts.csswg.org/css-color-adjust-1/#propdef-print-color-adjust",
  9297. "initial": "economy",
  9298. "appliesTo": "all elements",
  9299. "inherited": "yes",
  9300. "percentages": "N/A",
  9301. "computedValue": "specified keyword",
  9302. "canonicalOrder": "per grammar",
  9303. "animationType": "discrete",
  9304. "styleDeclaration": [
  9305. "print-color-adjust",
  9306. "printColorAdjust"
  9307. ],
  9308. "syntax": "economy | exact",
  9309. "extended": []
  9310. }
  9311. ],
  9312. [
  9313. "quotes",
  9314. {
  9315. "name": "quotes",
  9316. "href": "https://drafts.csswg.org/css-content-3/#propdef-quotes",
  9317. "initial": "auto",
  9318. "appliesTo": "all elements",
  9319. "inherited": "yes",
  9320. "percentages": "n/a",
  9321. "computedValue": "the keyword none, the keyword auto or match-parent, or a list, each item a pair of string values",
  9322. "canonicalOrder": "per grammar",
  9323. "animationType": "discrete",
  9324. "styleDeclaration": [
  9325. "quotes"
  9326. ],
  9327. "syntax": "auto | none | match-parent | [ <string> <string> ]+",
  9328. "extended": []
  9329. }
  9330. ],
  9331. [
  9332. "reading-flow",
  9333. {
  9334. "name": "reading-flow",
  9335. "href": "https://drafts.csswg.org/css-display-4/#propdef-reading-flow",
  9336. "initial": "normal",
  9337. "appliesTo": "block, flex and grid containers",
  9338. "inherited": "no",
  9339. "percentages": "n/a",
  9340. "computedValue": "as specified",
  9341. "canonicalOrder": "per grammar",
  9342. "animationType": "not animatable",
  9343. "styleDeclaration": [
  9344. "reading-flow",
  9345. "readingFlow"
  9346. ],
  9347. "syntax": "normal | source-order | flex-visual | flex-flow | grid-rows | grid-columns | grid-order",
  9348. "extended": []
  9349. }
  9350. ],
  9351. [
  9352. "region-fragment",
  9353. {
  9354. "name": "region-fragment",
  9355. "href": "https://drafts.csswg.org/css-regions-1/#propdef-region-fragment",
  9356. "initial": "auto",
  9357. "appliesTo": "CSS Regions",
  9358. "inherited": "no",
  9359. "percentages": "n/a",
  9360. "computedValue": "specified keyword",
  9361. "canonicalOrder": "per grammar",
  9362. "animationType": "discrete",
  9363. "styleDeclaration": [
  9364. "region-fragment",
  9365. "regionFragment"
  9366. ],
  9367. "syntax": "auto | break",
  9368. "extended": []
  9369. }
  9370. ],
  9371. [
  9372. "resize",
  9373. {
  9374. "name": "resize",
  9375. "href": "https://drafts.csswg.org/css-ui-4/#propdef-resize",
  9376. "initial": "none",
  9377. "appliesTo": "elements that are scroll containers and optionally replaced elements such as images, videos, and iframes",
  9378. "inherited": "no",
  9379. "percentages": "N/A",
  9380. "computedValue": "specified keyword",
  9381. "canonicalOrder": "per grammar",
  9382. "animationType": "discrete",
  9383. "styleDeclaration": [
  9384. "resize"
  9385. ],
  9386. "syntax": "none | both | horizontal | vertical | block | inline",
  9387. "extended": []
  9388. }
  9389. ],
  9390. [
  9391. "rest",
  9392. {
  9393. "name": "rest",
  9394. "href": "https://drafts.csswg.org/css-speech-1/#propdef-rest",
  9395. "initial": "see individual properties",
  9396. "appliesTo": "all elements",
  9397. "inherited": "no",
  9398. "percentages": "N/A",
  9399. "computedValue": "see individual properties",
  9400. "canonicalOrder": "per grammar",
  9401. "styleDeclaration": [
  9402. "rest"
  9403. ],
  9404. "syntax": "<'rest-before'> <'rest-after'>?",
  9405. "extended": []
  9406. }
  9407. ],
  9408. [
  9409. "rest-after",
  9410. {
  9411. "name": "rest-after",
  9412. "href": "https://drafts.csswg.org/css-speech-1/#propdef-rest-after",
  9413. "initial": "none",
  9414. "appliesTo": "all elements",
  9415. "inherited": "no",
  9416. "percentages": "N/A",
  9417. "computedValue": "specified value",
  9418. "canonicalOrder": "per grammar",
  9419. "styleDeclaration": [
  9420. "rest-after",
  9421. "restAfter"
  9422. ],
  9423. "syntax": "<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strong",
  9424. "extended": []
  9425. }
  9426. ],
  9427. [
  9428. "rest-before",
  9429. {
  9430. "name": "rest-before",
  9431. "href": "https://drafts.csswg.org/css-speech-1/#propdef-rest-before",
  9432. "initial": "none",
  9433. "appliesTo": "all elements",
  9434. "inherited": "no",
  9435. "percentages": "N/A",
  9436. "computedValue": "specified value",
  9437. "canonicalOrder": "per grammar",
  9438. "styleDeclaration": [
  9439. "rest-before",
  9440. "restBefore"
  9441. ],
  9442. "syntax": "<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strong",
  9443. "extended": []
  9444. }
  9445. ],
  9446. [
  9447. "right",
  9448. {
  9449. "name": "right",
  9450. "href": "https://drafts.csswg.org/css-position-3/#propdef-right",
  9451. "initial": "auto",
  9452. "appliesTo": "positioned elements",
  9453. "inherited": "no",
  9454. "percentages": "refer to size of containing block; see prose",
  9455. "computedValue": "the keyword auto or a computed <length-percentage> value",
  9456. "canonicalOrder": "per grammar",
  9457. "animationType": "by computed value type",
  9458. "logicalPropertyGroup": "inset",
  9459. "styleDeclaration": [
  9460. "right"
  9461. ],
  9462. "syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
  9463. "extended": [
  9464. "https://drafts.csswg.org/css-anchor-position-1/"
  9465. ]
  9466. }
  9467. ],
  9468. [
  9469. "rotate",
  9470. {
  9471. "name": "rotate",
  9472. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-rotate",
  9473. "initial": "none",
  9474. "appliesTo": "transformable elements",
  9475. "inherited": "no",
  9476. "percentages": "n/a",
  9477. "computedValue": "the keyword none, or an <angle> with an axis consisting of a list of three <number>s",
  9478. "canonicalOrder": "per grammar",
  9479. "animationType": "as SLERP, but see below for none",
  9480. "styleDeclaration": [
  9481. "rotate"
  9482. ],
  9483. "syntax": "none | <angle> | [ x | y | z | <number>{3} ] && <angle>",
  9484. "extended": []
  9485. }
  9486. ],
  9487. [
  9488. "row-gap",
  9489. {
  9490. "name": "row-gap",
  9491. "href": "https://drafts.csswg.org/css-align-3/#propdef-row-gap",
  9492. "initial": "normal",
  9493. "appliesTo": "multi-column containers, flex containers, grid containers",
  9494. "inherited": "no",
  9495. "percentages": "see § 8.3 Percentages In gap Properties",
  9496. "computedValue": "specified keyword, else a computed <length-percentage> value",
  9497. "canonicalOrder": "per grammar",
  9498. "animationType": "by computed value type",
  9499. "styleDeclaration": [
  9500. "row-gap",
  9501. "rowGap"
  9502. ],
  9503. "syntax": "normal | <length-percentage [0,∞]>",
  9504. "extended": []
  9505. }
  9506. ],
  9507. [
  9508. "row-rule",
  9509. {
  9510. "name": "row-rule",
  9511. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-row-rule",
  9512. "initial": "see individual properties",
  9513. "appliesTo": "see individual properties",
  9514. "inherited": "see individual properties",
  9515. "percentages": "see individual properties",
  9516. "computedValue": "see individual properties",
  9517. "animationType": "see individual properties",
  9518. "canonicalOrder": "per grammar",
  9519. "styleDeclaration": [
  9520. "row-rule",
  9521. "rowRule"
  9522. ],
  9523. "syntax": "<gap-rule-list> | <gap-auto-rule-list>",
  9524. "extended": []
  9525. }
  9526. ],
  9527. [
  9528. "row-rule-break",
  9529. {
  9530. "name": "row-rule-break",
  9531. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-row-rule-break",
  9532. "initial": "spanning-item",
  9533. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  9534. "inherited": "no",
  9535. "percentages": "n/a",
  9536. "computedValue": "as specified",
  9537. "canonicalOrder": "per grammar",
  9538. "animationType": "discrete",
  9539. "styleDeclaration": [
  9540. "row-rule-break",
  9541. "rowRuleBreak"
  9542. ],
  9543. "syntax": "none | spanning-item | intersection",
  9544. "extended": []
  9545. }
  9546. ],
  9547. [
  9548. "row-rule-color",
  9549. {
  9550. "name": "row-rule-color",
  9551. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-row-rule-color",
  9552. "initial": "currentcolor",
  9553. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  9554. "inherited": "no",
  9555. "percentages": "n/a",
  9556. "computedValue": "as specified",
  9557. "canonicalOrder": "per grammar",
  9558. "animationType": "repeatable list, see § 3.4.1 Interpolation behavior.",
  9559. "styleDeclaration": [
  9560. "row-rule-color",
  9561. "rowRuleColor"
  9562. ],
  9563. "syntax": "<line-color-list> | <auto-line-color-list>",
  9564. "extended": []
  9565. }
  9566. ],
  9567. [
  9568. "row-rule-outset",
  9569. {
  9570. "name": "row-rule-outset",
  9571. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-row-rule-outset",
  9572. "initial": "50%",
  9573. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  9574. "inherited": "no",
  9575. "percentages": "refer to the crossing gap width",
  9576. "computedValue": "as specified",
  9577. "canonicalOrder": "per grammar",
  9578. "animationType": "by computed value type",
  9579. "styleDeclaration": [
  9580. "row-rule-outset",
  9581. "rowRuleOutset"
  9582. ],
  9583. "syntax": "<length-percentage>",
  9584. "extended": []
  9585. }
  9586. ],
  9587. [
  9588. "row-rule-style",
  9589. {
  9590. "name": "row-rule-style",
  9591. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-row-rule-style",
  9592. "initial": "none",
  9593. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  9594. "inherited": "no",
  9595. "percentages": "n/a",
  9596. "computedValue": "as specified",
  9597. "canonicalOrder": "per grammar",
  9598. "animationType": "discrete",
  9599. "styleDeclaration": [
  9600. "row-rule-style",
  9601. "rowRuleStyle"
  9602. ],
  9603. "syntax": "<line-style-list> | <auto-line-style-list>",
  9604. "extended": []
  9605. }
  9606. ],
  9607. [
  9608. "row-rule-width",
  9609. {
  9610. "name": "row-rule-width",
  9611. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-row-rule-width",
  9612. "initial": "medium",
  9613. "appliesTo": "grid containers, flex containers, multicol containers, and masonry containers",
  9614. "inherited": "no",
  9615. "percentages": "n/a",
  9616. "computedValue": "list of absolute lengths, snapped as a border width",
  9617. "canonicalOrder": "per grammar",
  9618. "animationType": "repeatable list, see § 3.4.1 Interpolation behavior.",
  9619. "styleDeclaration": [
  9620. "row-rule-width",
  9621. "rowRuleWidth"
  9622. ],
  9623. "syntax": "<line-width-list> | <auto-line-width-list>",
  9624. "extended": []
  9625. }
  9626. ],
  9627. [
  9628. "ruby-align",
  9629. {
  9630. "name": "ruby-align",
  9631. "href": "https://drafts.csswg.org/css-ruby-1/#propdef-ruby-align",
  9632. "initial": "space-around",
  9633. "appliesTo": "ruby bases, ruby annotations, ruby base containers, ruby annotation containers",
  9634. "inherited": "yes",
  9635. "percentages": "n/a",
  9636. "computedValue": "specified keyword",
  9637. "canonicalOrder": "per grammar",
  9638. "animationType": "by computed value type",
  9639. "styleDeclaration": [
  9640. "ruby-align",
  9641. "rubyAlign"
  9642. ],
  9643. "syntax": "start | center | space-between | space-around",
  9644. "extended": []
  9645. }
  9646. ],
  9647. [
  9648. "ruby-merge",
  9649. {
  9650. "name": "ruby-merge",
  9651. "href": "https://drafts.csswg.org/css-ruby-1/#propdef-ruby-merge",
  9652. "initial": "separate",
  9653. "appliesTo": "interlinear ruby annotation containers",
  9654. "inherited": "yes",
  9655. "percentages": "n/a",
  9656. "computedValue": "specified keyword",
  9657. "canonicalOrder": "per grammar",
  9658. "animationType": "by computed value type",
  9659. "styleDeclaration": [
  9660. "ruby-merge",
  9661. "rubyMerge"
  9662. ],
  9663. "syntax": "separate | merge | auto",
  9664. "extended": []
  9665. }
  9666. ],
  9667. [
  9668. "ruby-overhang",
  9669. {
  9670. "name": "ruby-overhang",
  9671. "href": "https://drafts.csswg.org/css-ruby-1/#propdef-ruby-overhang",
  9672. "initial": "auto",
  9673. "appliesTo": "ruby annotation containers",
  9674. "inherited": "yes",
  9675. "percentages": "n/a",
  9676. "computedValue": "specified keyword",
  9677. "canonicalOrder": "per grammar",
  9678. "animationType": "by computed value type",
  9679. "styleDeclaration": [
  9680. "ruby-overhang",
  9681. "rubyOverhang"
  9682. ],
  9683. "syntax": "auto | none",
  9684. "extended": []
  9685. }
  9686. ],
  9687. [
  9688. "ruby-position",
  9689. {
  9690. "name": "ruby-position",
  9691. "href": "https://drafts.csswg.org/css-ruby-1/#propdef-ruby-position",
  9692. "initial": "alternate",
  9693. "appliesTo": "ruby annotation containers",
  9694. "inherited": "yes",
  9695. "percentages": "n/a",
  9696. "computedValue": "specified keyword",
  9697. "canonicalOrder": "per grammar",
  9698. "animationType": "discrete",
  9699. "styleDeclaration": [
  9700. "ruby-position",
  9701. "rubyPosition"
  9702. ],
  9703. "syntax": "[ alternate || [ over | under ] ] | inter-character",
  9704. "extended": []
  9705. }
  9706. ],
  9707. [
  9708. "rule",
  9709. {
  9710. "name": "rule",
  9711. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-rule",
  9712. "initial": "see individual properties",
  9713. "appliesTo": "Same as column-rule and row-rule",
  9714. "inherited": "no",
  9715. "percentages": "see individual properties",
  9716. "computedValue": "see individual properties",
  9717. "animationType": "see individual properties",
  9718. "canonicalOrder": "per grammar",
  9719. "styleDeclaration": [
  9720. "rule"
  9721. ],
  9722. "syntax": "<'column-rule'>",
  9723. "extended": []
  9724. }
  9725. ],
  9726. [
  9727. "rule-break",
  9728. {
  9729. "name": "rule-break",
  9730. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-rule-break",
  9731. "initial": "see individual properties",
  9732. "appliesTo": "Same as column-rule-break and row-rule-break",
  9733. "inherited": "see individual properties",
  9734. "percentages": "see individual properties",
  9735. "computedValue": "see individual properties",
  9736. "animationType": "see individual properties",
  9737. "canonicalOrder": "per grammar",
  9738. "styleDeclaration": [
  9739. "rule-break",
  9740. "ruleBreak"
  9741. ],
  9742. "syntax": "<'column-rule-break'>",
  9743. "extended": []
  9744. }
  9745. ],
  9746. [
  9747. "rule-color",
  9748. {
  9749. "name": "rule-color",
  9750. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-rule-color",
  9751. "initial": "see individual properties",
  9752. "appliesTo": "Same as column-rule-color and row-rule-color",
  9753. "inherited": "no",
  9754. "percentages": "see individual properties",
  9755. "computedValue": "see individual properties",
  9756. "animationType": "see individual properties",
  9757. "canonicalOrder": "per grammar",
  9758. "styleDeclaration": [
  9759. "rule-color",
  9760. "ruleColor"
  9761. ],
  9762. "syntax": "<'column-rule-color'>",
  9763. "extended": []
  9764. }
  9765. ],
  9766. [
  9767. "rule-outset",
  9768. {
  9769. "name": "rule-outset",
  9770. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-rule-outset",
  9771. "initial": "see individual properties",
  9772. "appliesTo": "Same as column-rule-outset and row-rule-outset",
  9773. "inherited": "see individual properties",
  9774. "percentages": "see individual properties",
  9775. "computedValue": "see individual properties",
  9776. "animationType": "see individual properties",
  9777. "canonicalOrder": "per grammar",
  9778. "styleDeclaration": [
  9779. "rule-outset",
  9780. "ruleOutset"
  9781. ],
  9782. "syntax": "<'column-rule-outset'>",
  9783. "extended": []
  9784. }
  9785. ],
  9786. [
  9787. "rule-style",
  9788. {
  9789. "name": "rule-style",
  9790. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-rule-style",
  9791. "initial": "see individual properties",
  9792. "appliesTo": "Same as column-rule-style and row-rule-style",
  9793. "inherited": "no",
  9794. "percentages": "see individual properties",
  9795. "computedValue": "see individual properties",
  9796. "animationType": "see individual properties",
  9797. "canonicalOrder": "per grammar",
  9798. "styleDeclaration": [
  9799. "rule-style",
  9800. "ruleStyle"
  9801. ],
  9802. "syntax": "<'column-rule-style'>",
  9803. "extended": []
  9804. }
  9805. ],
  9806. [
  9807. "rule-width",
  9808. {
  9809. "name": "rule-width",
  9810. "href": "https://drafts.csswg.org/css-gaps-1/#propdef-rule-width",
  9811. "initial": "see individual properties",
  9812. "appliesTo": "Same as column-rule-width and row-rule-width",
  9813. "inherited": "no",
  9814. "percentages": "see individual properties",
  9815. "computedValue": "see individual properties",
  9816. "animationType": "see individual properties",
  9817. "canonicalOrder": "per grammar",
  9818. "styleDeclaration": [
  9819. "rule-width",
  9820. "ruleWidth"
  9821. ],
  9822. "syntax": "<'column-rule-width'>",
  9823. "extended": []
  9824. }
  9825. ],
  9826. [
  9827. "scale",
  9828. {
  9829. "name": "scale",
  9830. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-scale",
  9831. "initial": "none",
  9832. "appliesTo": "transformable elements",
  9833. "inherited": "no",
  9834. "percentages": "n/a",
  9835. "computedValue": "the keyword none, or a list of 3 <number>s",
  9836. "canonicalOrder": "per grammar",
  9837. "animationType": "by computed value, but see below for none",
  9838. "styleDeclaration": [
  9839. "scale"
  9840. ],
  9841. "syntax": "none | [ <number> | <percentage> ]{1,3}",
  9842. "extended": []
  9843. }
  9844. ],
  9845. [
  9846. "scroll-behavior",
  9847. {
  9848. "name": "scroll-behavior",
  9849. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-scroll-behavior",
  9850. "initial": "auto",
  9851. "appliesTo": "scroll containers",
  9852. "inherited": "no",
  9853. "percentages": "n/a",
  9854. "computedValue": "specified value",
  9855. "canonicalOrder": "per grammar",
  9856. "animationType": "not animatable",
  9857. "styleDeclaration": [
  9858. "scroll-behavior",
  9859. "scrollBehavior"
  9860. ],
  9861. "syntax": "auto | smooth",
  9862. "extended": []
  9863. }
  9864. ],
  9865. [
  9866. "scroll-margin",
  9867. {
  9868. "name": "scroll-margin",
  9869. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin",
  9870. "initial": "0",
  9871. "appliesTo": "all elements",
  9872. "inherited": "no",
  9873. "percentages": "n/a",
  9874. "computedValue": "per side, an absolute length",
  9875. "canonicalOrder": "per grammar",
  9876. "animationType": "by computed value type",
  9877. "styleDeclaration": [
  9878. "scroll-margin",
  9879. "scrollMargin"
  9880. ],
  9881. "syntax": "<length>{1,4}",
  9882. "extended": []
  9883. }
  9884. ],
  9885. [
  9886. "scroll-margin-block",
  9887. {
  9888. "name": "scroll-margin-block",
  9889. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block",
  9890. "initial": "0",
  9891. "appliesTo": "all elements",
  9892. "inherited": "no",
  9893. "percentages": "n/a",
  9894. "computedValue": "see individual properties",
  9895. "animationType": "by computed value type",
  9896. "canonicalOrder": "per grammar",
  9897. "styleDeclaration": [
  9898. "scroll-margin-block",
  9899. "scrollMarginBlock"
  9900. ],
  9901. "syntax": "<length>{1,2}",
  9902. "extended": []
  9903. }
  9904. ],
  9905. [
  9906. "scroll-margin-block-end",
  9907. {
  9908. "name": "scroll-margin-block-end",
  9909. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block-end",
  9910. "initial": "0",
  9911. "appliesTo": "all elements",
  9912. "inherited": "no",
  9913. "percentages": "n/a",
  9914. "computedValue": "absolute length",
  9915. "canonicalOrder": "per grammar",
  9916. "animationType": "by computed value type",
  9917. "logicalPropertyGroup": "scroll-margin",
  9918. "styleDeclaration": [
  9919. "scroll-margin-block-end",
  9920. "scrollMarginBlockEnd"
  9921. ],
  9922. "syntax": "<length>",
  9923. "extended": []
  9924. }
  9925. ],
  9926. [
  9927. "scroll-margin-block-start",
  9928. {
  9929. "name": "scroll-margin-block-start",
  9930. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-block-start",
  9931. "initial": "0",
  9932. "appliesTo": "all elements",
  9933. "inherited": "no",
  9934. "percentages": "n/a",
  9935. "computedValue": "absolute length",
  9936. "canonicalOrder": "per grammar",
  9937. "animationType": "by computed value type",
  9938. "logicalPropertyGroup": "scroll-margin",
  9939. "styleDeclaration": [
  9940. "scroll-margin-block-start",
  9941. "scrollMarginBlockStart"
  9942. ],
  9943. "syntax": "<length>",
  9944. "extended": []
  9945. }
  9946. ],
  9947. [
  9948. "scroll-margin-bottom",
  9949. {
  9950. "name": "scroll-margin-bottom",
  9951. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-bottom",
  9952. "initial": "0",
  9953. "appliesTo": "all elements",
  9954. "inherited": "no",
  9955. "percentages": "n/a",
  9956. "computedValue": "absolute length",
  9957. "canonicalOrder": "per grammar",
  9958. "animationType": "by computed value type",
  9959. "logicalPropertyGroup": "scroll-margin",
  9960. "styleDeclaration": [
  9961. "scroll-margin-bottom",
  9962. "scrollMarginBottom"
  9963. ],
  9964. "syntax": "<length>",
  9965. "extended": []
  9966. }
  9967. ],
  9968. [
  9969. "scroll-margin-inline",
  9970. {
  9971. "name": "scroll-margin-inline",
  9972. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-inline",
  9973. "initial": "0",
  9974. "appliesTo": "all elements",
  9975. "inherited": "no",
  9976. "percentages": "n/a",
  9977. "computedValue": "see individual properties",
  9978. "animationType": "by computed value type",
  9979. "canonicalOrder": "per grammar",
  9980. "styleDeclaration": [
  9981. "scroll-margin-inline",
  9982. "scrollMarginInline"
  9983. ],
  9984. "syntax": "<length>{1,2}",
  9985. "extended": []
  9986. }
  9987. ],
  9988. [
  9989. "scroll-margin-inline-end",
  9990. {
  9991. "name": "scroll-margin-inline-end",
  9992. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-inline-end",
  9993. "initial": "0",
  9994. "appliesTo": "all elements",
  9995. "inherited": "no",
  9996. "percentages": "n/a",
  9997. "computedValue": "absolute length",
  9998. "canonicalOrder": "per grammar",
  9999. "animationType": "by computed value type",
  10000. "logicalPropertyGroup": "scroll-margin",
  10001. "styleDeclaration": [
  10002. "scroll-margin-inline-end",
  10003. "scrollMarginInlineEnd"
  10004. ],
  10005. "syntax": "<length>",
  10006. "extended": []
  10007. }
  10008. ],
  10009. [
  10010. "scroll-margin-inline-start",
  10011. {
  10012. "name": "scroll-margin-inline-start",
  10013. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-inline-start",
  10014. "initial": "0",
  10015. "appliesTo": "all elements",
  10016. "inherited": "no",
  10017. "percentages": "n/a",
  10018. "computedValue": "absolute length",
  10019. "canonicalOrder": "per grammar",
  10020. "animationType": "by computed value type",
  10021. "logicalPropertyGroup": "scroll-margin",
  10022. "styleDeclaration": [
  10023. "scroll-margin-inline-start",
  10024. "scrollMarginInlineStart"
  10025. ],
  10026. "syntax": "<length>",
  10027. "extended": []
  10028. }
  10029. ],
  10030. [
  10031. "scroll-margin-left",
  10032. {
  10033. "name": "scroll-margin-left",
  10034. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-left",
  10035. "initial": "0",
  10036. "appliesTo": "all elements",
  10037. "inherited": "no",
  10038. "percentages": "n/a",
  10039. "computedValue": "absolute length",
  10040. "canonicalOrder": "per grammar",
  10041. "animationType": "by computed value type",
  10042. "logicalPropertyGroup": "scroll-margin",
  10043. "styleDeclaration": [
  10044. "scroll-margin-left",
  10045. "scrollMarginLeft"
  10046. ],
  10047. "syntax": "<length>",
  10048. "extended": []
  10049. }
  10050. ],
  10051. [
  10052. "scroll-margin-right",
  10053. {
  10054. "name": "scroll-margin-right",
  10055. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-right",
  10056. "initial": "0",
  10057. "appliesTo": "all elements",
  10058. "inherited": "no",
  10059. "percentages": "n/a",
  10060. "computedValue": "absolute length",
  10061. "canonicalOrder": "per grammar",
  10062. "animationType": "by computed value type",
  10063. "logicalPropertyGroup": "scroll-margin",
  10064. "styleDeclaration": [
  10065. "scroll-margin-right",
  10066. "scrollMarginRight"
  10067. ],
  10068. "syntax": "<length>",
  10069. "extended": []
  10070. }
  10071. ],
  10072. [
  10073. "scroll-margin-top",
  10074. {
  10075. "name": "scroll-margin-top",
  10076. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin-top",
  10077. "initial": "0",
  10078. "appliesTo": "all elements",
  10079. "inherited": "no",
  10080. "percentages": "n/a",
  10081. "computedValue": "absolute length",
  10082. "canonicalOrder": "per grammar",
  10083. "animationType": "by computed value type",
  10084. "logicalPropertyGroup": "scroll-margin",
  10085. "styleDeclaration": [
  10086. "scroll-margin-top",
  10087. "scrollMarginTop"
  10088. ],
  10089. "syntax": "<length>",
  10090. "extended": []
  10091. }
  10092. ],
  10093. [
  10094. "scroll-marker-group",
  10095. {
  10096. "name": "scroll-marker-group",
  10097. "href": "https://drafts.csswg.org/css-overflow-5/#propdef-scroll-marker-group",
  10098. "initial": "none",
  10099. "appliesTo": "scroll containers",
  10100. "inherited": "no",
  10101. "percentages": "n/a",
  10102. "computedValue": "specified value",
  10103. "canonicalOrder": "per grammar",
  10104. "animationType": "discrete",
  10105. "styleDeclaration": [
  10106. "scroll-marker-group",
  10107. "scrollMarkerGroup"
  10108. ],
  10109. "syntax": "none | before | after",
  10110. "extended": []
  10111. }
  10112. ],
  10113. [
  10114. "scroll-padding",
  10115. {
  10116. "name": "scroll-padding",
  10117. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding",
  10118. "initial": "auto",
  10119. "appliesTo": "scroll containers",
  10120. "inherited": "no",
  10121. "percentages": "relative to the corresponding dimension of the scroll container’s scrollport",
  10122. "computedValue": "per side, either the keyword auto or a computed <length-percentage> value",
  10123. "animationType": "by computed value type",
  10124. "canonicalOrder": "per grammar",
  10125. "styleDeclaration": [
  10126. "scroll-padding",
  10127. "scrollPadding"
  10128. ],
  10129. "syntax": "[ auto | <length-percentage [0,∞]> ]{1,4}",
  10130. "extended": []
  10131. }
  10132. ],
  10133. [
  10134. "scroll-padding-block",
  10135. {
  10136. "name": "scroll-padding-block",
  10137. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block",
  10138. "initial": "auto",
  10139. "appliesTo": "scroll containers",
  10140. "inherited": "no",
  10141. "percentages": "relative to the scroll container’s scrollport",
  10142. "computedValue": "see individual properties",
  10143. "animationType": "by computed value",
  10144. "canonicalOrder": "per grammar",
  10145. "styleDeclaration": [
  10146. "scroll-padding-block",
  10147. "scrollPaddingBlock"
  10148. ],
  10149. "syntax": "[ auto | <length-percentage [0,∞]> ]{1,2}",
  10150. "extended": []
  10151. }
  10152. ],
  10153. [
  10154. "scroll-padding-block-end",
  10155. {
  10156. "name": "scroll-padding-block-end",
  10157. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block-end",
  10158. "initial": "auto",
  10159. "appliesTo": "scroll containers",
  10160. "inherited": "no",
  10161. "percentages": "relative to the scroll container’s scrollport",
  10162. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10163. "canonicalOrder": "per grammar",
  10164. "animationType": "by computed value type",
  10165. "logicalPropertyGroup": "scroll-padding",
  10166. "styleDeclaration": [
  10167. "scroll-padding-block-end",
  10168. "scrollPaddingBlockEnd"
  10169. ],
  10170. "syntax": "auto | <length-percentage [0,∞]>",
  10171. "extended": []
  10172. }
  10173. ],
  10174. [
  10175. "scroll-padding-block-start",
  10176. {
  10177. "name": "scroll-padding-block-start",
  10178. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-block-start",
  10179. "initial": "auto",
  10180. "appliesTo": "scroll containers",
  10181. "inherited": "no",
  10182. "percentages": "relative to the scroll container’s scrollport",
  10183. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10184. "canonicalOrder": "per grammar",
  10185. "animationType": "by computed value type",
  10186. "logicalPropertyGroup": "scroll-padding",
  10187. "styleDeclaration": [
  10188. "scroll-padding-block-start",
  10189. "scrollPaddingBlockStart"
  10190. ],
  10191. "syntax": "auto | <length-percentage [0,∞]>",
  10192. "extended": []
  10193. }
  10194. ],
  10195. [
  10196. "scroll-padding-bottom",
  10197. {
  10198. "name": "scroll-padding-bottom",
  10199. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-bottom",
  10200. "initial": "auto",
  10201. "appliesTo": "scroll containers",
  10202. "inherited": "no",
  10203. "percentages": "relative to the scroll container’s scrollport",
  10204. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10205. "canonicalOrder": "per grammar",
  10206. "animationType": "by computed value type",
  10207. "logicalPropertyGroup": "scroll-padding",
  10208. "styleDeclaration": [
  10209. "scroll-padding-bottom",
  10210. "scrollPaddingBottom"
  10211. ],
  10212. "syntax": "auto | <length-percentage [0,∞]>",
  10213. "extended": []
  10214. }
  10215. ],
  10216. [
  10217. "scroll-padding-inline",
  10218. {
  10219. "name": "scroll-padding-inline",
  10220. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-inline",
  10221. "initial": "auto",
  10222. "appliesTo": "scroll containers",
  10223. "inherited": "no",
  10224. "percentages": "relative to the scroll container’s scrollport",
  10225. "computedValue": "see individual properties",
  10226. "animationType": "by computed value",
  10227. "canonicalOrder": "per grammar",
  10228. "styleDeclaration": [
  10229. "scroll-padding-inline",
  10230. "scrollPaddingInline"
  10231. ],
  10232. "syntax": "[ auto | <length-percentage [0,∞]> ]{1,2}",
  10233. "extended": []
  10234. }
  10235. ],
  10236. [
  10237. "scroll-padding-inline-end",
  10238. {
  10239. "name": "scroll-padding-inline-end",
  10240. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-inline-end",
  10241. "initial": "auto",
  10242. "appliesTo": "scroll containers",
  10243. "inherited": "no",
  10244. "percentages": "relative to the scroll container’s scrollport",
  10245. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10246. "canonicalOrder": "per grammar",
  10247. "animationType": "by computed value type",
  10248. "logicalPropertyGroup": "scroll-padding",
  10249. "styleDeclaration": [
  10250. "scroll-padding-inline-end",
  10251. "scrollPaddingInlineEnd"
  10252. ],
  10253. "syntax": "auto | <length-percentage [0,∞]>",
  10254. "extended": []
  10255. }
  10256. ],
  10257. [
  10258. "scroll-padding-inline-start",
  10259. {
  10260. "name": "scroll-padding-inline-start",
  10261. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-inline-start",
  10262. "initial": "auto",
  10263. "appliesTo": "scroll containers",
  10264. "inherited": "no",
  10265. "percentages": "relative to the scroll container’s scrollport",
  10266. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10267. "canonicalOrder": "per grammar",
  10268. "animationType": "by computed value type",
  10269. "logicalPropertyGroup": "scroll-padding",
  10270. "styleDeclaration": [
  10271. "scroll-padding-inline-start",
  10272. "scrollPaddingInlineStart"
  10273. ],
  10274. "syntax": "auto | <length-percentage [0,∞]>",
  10275. "extended": []
  10276. }
  10277. ],
  10278. [
  10279. "scroll-padding-left",
  10280. {
  10281. "name": "scroll-padding-left",
  10282. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-left",
  10283. "initial": "auto",
  10284. "appliesTo": "scroll containers",
  10285. "inherited": "no",
  10286. "percentages": "relative to the scroll container’s scrollport",
  10287. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10288. "canonicalOrder": "per grammar",
  10289. "animationType": "by computed value type",
  10290. "logicalPropertyGroup": "scroll-padding",
  10291. "styleDeclaration": [
  10292. "scroll-padding-left",
  10293. "scrollPaddingLeft"
  10294. ],
  10295. "syntax": "auto | <length-percentage [0,∞]>",
  10296. "extended": []
  10297. }
  10298. ],
  10299. [
  10300. "scroll-padding-right",
  10301. {
  10302. "name": "scroll-padding-right",
  10303. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-right",
  10304. "initial": "auto",
  10305. "appliesTo": "scroll containers",
  10306. "inherited": "no",
  10307. "percentages": "relative to the scroll container’s scrollport",
  10308. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10309. "canonicalOrder": "per grammar",
  10310. "animationType": "by computed value type",
  10311. "logicalPropertyGroup": "scroll-padding",
  10312. "styleDeclaration": [
  10313. "scroll-padding-right",
  10314. "scrollPaddingRight"
  10315. ],
  10316. "syntax": "auto | <length-percentage [0,∞]>",
  10317. "extended": []
  10318. }
  10319. ],
  10320. [
  10321. "scroll-padding-top",
  10322. {
  10323. "name": "scroll-padding-top",
  10324. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-padding-top",
  10325. "initial": "auto",
  10326. "appliesTo": "scroll containers",
  10327. "inherited": "no",
  10328. "percentages": "relative to the scroll container’s scrollport",
  10329. "computedValue": "the keyword auto or a computed <length-percentage> value",
  10330. "canonicalOrder": "per grammar",
  10331. "animationType": "by computed value type",
  10332. "logicalPropertyGroup": "scroll-padding",
  10333. "styleDeclaration": [
  10334. "scroll-padding-top",
  10335. "scrollPaddingTop"
  10336. ],
  10337. "syntax": "auto | <length-percentage [0,∞]>",
  10338. "extended": []
  10339. }
  10340. ],
  10341. [
  10342. "scroll-snap-align",
  10343. {
  10344. "name": "scroll-snap-align",
  10345. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-align",
  10346. "initial": "none",
  10347. "appliesTo": "all elements",
  10348. "inherited": "no",
  10349. "percentages": "n/a",
  10350. "computedValue": "two keywords",
  10351. "canonicalOrder": "per grammar",
  10352. "animationType": "discrete",
  10353. "styleDeclaration": [
  10354. "scroll-snap-align",
  10355. "scrollSnapAlign"
  10356. ],
  10357. "syntax": "[ none | start | end | center ]{1,2}",
  10358. "extended": []
  10359. }
  10360. ],
  10361. [
  10362. "scroll-snap-stop",
  10363. {
  10364. "name": "scroll-snap-stop",
  10365. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-stop",
  10366. "initial": "normal",
  10367. "appliesTo": "all elements",
  10368. "inherited": "no",
  10369. "percentages": "n/a",
  10370. "computedValue": "specified keyword",
  10371. "canonicalOrder": "per grammar",
  10372. "animationType": "discrete",
  10373. "styleDeclaration": [
  10374. "scroll-snap-stop",
  10375. "scrollSnapStop"
  10376. ],
  10377. "syntax": "normal | always",
  10378. "extended": []
  10379. }
  10380. ],
  10381. [
  10382. "scroll-snap-type",
  10383. {
  10384. "name": "scroll-snap-type",
  10385. "href": "https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-snap-type",
  10386. "initial": "none",
  10387. "appliesTo": "all elements",
  10388. "inherited": "no",
  10389. "percentages": "n/a",
  10390. "computedValue": "specified keyword(s)",
  10391. "canonicalOrder": "per grammar",
  10392. "animationType": "discrete",
  10393. "styleDeclaration": [
  10394. "scroll-snap-type",
  10395. "scrollSnapType"
  10396. ],
  10397. "syntax": "none | [ x | y | block | inline | both ] [ mandatory | proximity ]?",
  10398. "extended": []
  10399. }
  10400. ],
  10401. [
  10402. "scroll-timeline",
  10403. {
  10404. "name": "scroll-timeline",
  10405. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-scroll-timeline",
  10406. "initial": "see individual properties",
  10407. "appliesTo": "all elements",
  10408. "inherited": "no",
  10409. "percentages": "see individual properties",
  10410. "computedValue": "see individual properties",
  10411. "animationType": "not animatable",
  10412. "canonicalOrder": "per grammar",
  10413. "styleDeclaration": [
  10414. "scroll-timeline",
  10415. "scrollTimeline"
  10416. ],
  10417. "syntax": "[ <'scroll-timeline-name'> <'scroll-timeline-axis'>? ]#",
  10418. "extended": []
  10419. }
  10420. ],
  10421. [
  10422. "scroll-timeline-axis",
  10423. {
  10424. "name": "scroll-timeline-axis",
  10425. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-scroll-timeline-axis",
  10426. "initial": "block",
  10427. "appliesTo": "all elements",
  10428. "inherited": "no",
  10429. "percentages": "n/a",
  10430. "computedValue": "a list of the keywords specified",
  10431. "canonicalOrder": "per grammar",
  10432. "animationType": "not animatable",
  10433. "styleDeclaration": [
  10434. "scroll-timeline-axis",
  10435. "scrollTimelineAxis"
  10436. ],
  10437. "syntax": "[ block | inline | x | y ]#",
  10438. "extended": []
  10439. }
  10440. ],
  10441. [
  10442. "scroll-timeline-name",
  10443. {
  10444. "name": "scroll-timeline-name",
  10445. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-scroll-timeline-name",
  10446. "initial": "none",
  10447. "appliesTo": "all elements",
  10448. "inherited": "no",
  10449. "percentages": "n/a",
  10450. "computedValue": "the keyword none or a list of CSS identifiers",
  10451. "canonicalOrder": "per grammar",
  10452. "animationType": "not animatable",
  10453. "styleDeclaration": [
  10454. "scroll-timeline-name",
  10455. "scrollTimelineName"
  10456. ],
  10457. "syntax": "[ none | <dashed-ident> ]#",
  10458. "extended": []
  10459. }
  10460. ],
  10461. [
  10462. "scrollbar-color",
  10463. {
  10464. "name": "scrollbar-color",
  10465. "href": "https://drafts.csswg.org/css-scrollbars-1/#propdef-scrollbar-color",
  10466. "initial": "auto",
  10467. "appliesTo": "scroll containers",
  10468. "inherited": "yes",
  10469. "percentages": "n/a",
  10470. "computedValue": "specified keyword or two computed colors",
  10471. "canonicalOrder": "per grammar",
  10472. "animationType": "by computed value",
  10473. "styleDeclaration": [
  10474. "scrollbar-color",
  10475. "scrollbarColor"
  10476. ],
  10477. "syntax": "auto | <color>{2}",
  10478. "extended": []
  10479. }
  10480. ],
  10481. [
  10482. "scrollbar-gutter",
  10483. {
  10484. "name": "scrollbar-gutter",
  10485. "href": "https://drafts.csswg.org/css-overflow-3/#propdef-scrollbar-gutter",
  10486. "initial": "auto",
  10487. "appliesTo": "scroll containers",
  10488. "inherited": "no",
  10489. "percentages": "n/a",
  10490. "computedValue": "specified keyword(s)",
  10491. "canonicalOrder": "per grammar",
  10492. "animationType": "discrete",
  10493. "styleDeclaration": [
  10494. "scrollbar-gutter",
  10495. "scrollbarGutter"
  10496. ],
  10497. "syntax": "auto | stable && both-edges?",
  10498. "extended": []
  10499. }
  10500. ],
  10501. [
  10502. "scrollbar-width",
  10503. {
  10504. "name": "scrollbar-width",
  10505. "href": "https://drafts.csswg.org/css-scrollbars-1/#propdef-scrollbar-width",
  10506. "initial": "auto",
  10507. "appliesTo": "scroll containers",
  10508. "inherited": "no",
  10509. "percentages": "n/a",
  10510. "computedValue": "specified keyword",
  10511. "canonicalOrder": "per grammar",
  10512. "animationType": "discrete",
  10513. "styleDeclaration": [
  10514. "scrollbar-width",
  10515. "scrollbarWidth"
  10516. ],
  10517. "syntax": "auto | thin | none",
  10518. "extended": []
  10519. }
  10520. ],
  10521. [
  10522. "shape-image-threshold",
  10523. {
  10524. "name": "shape-image-threshold",
  10525. "href": "https://drafts.csswg.org/css-shapes-1/#propdef-shape-image-threshold",
  10526. "initial": "0",
  10527. "appliesTo": "floats",
  10528. "inherited": "no",
  10529. "percentages": "n/a",
  10530. "computedValue": "specified number, clamped to the range [0,1]",
  10531. "canonicalOrder": "per grammar",
  10532. "animationType": "by computed value",
  10533. "styleDeclaration": [
  10534. "shape-image-threshold",
  10535. "shapeImageThreshold"
  10536. ],
  10537. "syntax": "<opacity-value>",
  10538. "extended": []
  10539. }
  10540. ],
  10541. [
  10542. "shape-inside",
  10543. {
  10544. "name": "shape-inside",
  10545. "href": "https://drafts.csswg.org/css-shapes-2/#propdef-shape-inside",
  10546. "initial": "auto",
  10547. "appliesTo": "block-level elements",
  10548. "inherited": "no",
  10549. "percentages": "n/a",
  10550. "computedValue": "computed lengths for <basic-shape>, the absolute URL for <url>, otherwise as specified",
  10551. "canonicalOrder": "per grammar",
  10552. "animationType": "as defined for <basic-shape>, otherwise discrete",
  10553. "styleDeclaration": [
  10554. "shape-inside",
  10555. "shapeInside"
  10556. ],
  10557. "syntax": "auto | outside-shape | [ <basic-shape> || shape-box ] | <image> | display",
  10558. "extended": []
  10559. }
  10560. ],
  10561. [
  10562. "shape-margin",
  10563. {
  10564. "name": "shape-margin",
  10565. "href": "https://drafts.csswg.org/css-shapes-1/#propdef-shape-margin",
  10566. "initial": "0",
  10567. "appliesTo": "floats and initial letter boxes",
  10568. "inherited": "no",
  10569. "percentages": "refer to the inline size of the containing block",
  10570. "computedValue": "computed <length-percentage> value",
  10571. "canonicalOrder": "per grammar",
  10572. "animationType": "by computed value",
  10573. "styleDeclaration": [
  10574. "shape-margin",
  10575. "shapeMargin"
  10576. ],
  10577. "syntax": "<length-percentage [0,∞]>",
  10578. "extended": []
  10579. }
  10580. ],
  10581. [
  10582. "shape-outside",
  10583. {
  10584. "name": "shape-outside",
  10585. "href": "https://drafts.csswg.org/css-shapes-1/#propdef-shape-outside",
  10586. "initial": "none",
  10587. "appliesTo": "floats and initial letter boxes",
  10588. "inherited": "no",
  10589. "percentages": "n/a",
  10590. "computedValue": "as defined for <basic-shape> (with <shape-box> following, if supplied); else the computed <image>; else the keyword as specified",
  10591. "canonicalOrder": "per grammar",
  10592. "animationType": "as defined for <basic-shape>, otherwise discrete",
  10593. "styleDeclaration": [
  10594. "shape-outside",
  10595. "shapeOutside"
  10596. ],
  10597. "syntax": "none | [ <basic-shape> || <shape-box> ] | <image>",
  10598. "extended": []
  10599. }
  10600. ],
  10601. [
  10602. "shape-rendering",
  10603. {
  10604. "name": "shape-rendering",
  10605. "href": "https://svgwg.org/svg2-draft/painting.html#ShapeRenderingProperty",
  10606. "initial": "auto",
  10607. "appliesTo": "shapes",
  10608. "inherited": "yes",
  10609. "percentages": "N/A",
  10610. "media": "visual",
  10611. "computedValue": "as specified",
  10612. "animationType": "discrete",
  10613. "styleDeclaration": [
  10614. "shape-rendering",
  10615. "shapeRendering"
  10616. ],
  10617. "syntax": "auto | optimizeSpeed | crispEdges | geometricPrecision",
  10618. "extended": []
  10619. }
  10620. ],
  10621. [
  10622. "slider-orientation",
  10623. {
  10624. "name": "slider-orientation",
  10625. "href": "https://drafts.csswg.org/css-forms-1/#propdef-slider-orientation",
  10626. "initial": "auto",
  10627. "appliesTo": "all elements",
  10628. "inherited": "no",
  10629. "percentages": "n/a",
  10630. "computedValue": "as specified",
  10631. "canonicalOrder": "per grammar",
  10632. "animationType": "discrete",
  10633. "styleDeclaration": [
  10634. "slider-orientation",
  10635. "sliderOrientation"
  10636. ],
  10637. "syntax": "auto | left-to-right | right-to-left | top-to-bottom | bottom-to-top",
  10638. "extended": []
  10639. }
  10640. ],
  10641. [
  10642. "spatial-navigation-action",
  10643. {
  10644. "name": "spatial-navigation-action",
  10645. "href": "https://drafts.csswg.org/css-nav-1/#propdef-spatial-navigation-action",
  10646. "initial": "auto",
  10647. "appliesTo": "scroll containers",
  10648. "inherited": "no",
  10649. "percentages": "n/a",
  10650. "computedValue": "as specified",
  10651. "canonicalOrder": "per grammar",
  10652. "animationType": "discrete",
  10653. "styleDeclaration": [
  10654. "spatial-navigation-action",
  10655. "spatialNavigationAction"
  10656. ],
  10657. "syntax": "auto | focus | scroll",
  10658. "extended": []
  10659. }
  10660. ],
  10661. [
  10662. "spatial-navigation-contain",
  10663. {
  10664. "name": "spatial-navigation-contain",
  10665. "href": "https://drafts.csswg.org/css-nav-1/#propdef-spatial-navigation-contain",
  10666. "initial": "auto",
  10667. "appliesTo": "all elements",
  10668. "inherited": "no",
  10669. "percentages": "n/a",
  10670. "computedValue": "as specified",
  10671. "canonicalOrder": "per grammar",
  10672. "animationType": "discrete",
  10673. "styleDeclaration": [
  10674. "spatial-navigation-contain",
  10675. "spatialNavigationContain"
  10676. ],
  10677. "syntax": "auto | contain",
  10678. "extended": []
  10679. }
  10680. ],
  10681. [
  10682. "spatial-navigation-function",
  10683. {
  10684. "name": "spatial-navigation-function",
  10685. "href": "https://drafts.csswg.org/css-nav-1/#propdef-spatial-navigation-function",
  10686. "initial": "normal",
  10687. "appliesTo": "spatial navigation containers",
  10688. "inherited": "no",
  10689. "percentages": "n/a",
  10690. "computedValue": "as specified",
  10691. "canonicalOrder": "per grammar",
  10692. "animationType": "discrete",
  10693. "styleDeclaration": [
  10694. "spatial-navigation-function",
  10695. "spatialNavigationFunction"
  10696. ],
  10697. "syntax": "normal | grid",
  10698. "extended": []
  10699. }
  10700. ],
  10701. [
  10702. "speak",
  10703. {
  10704. "name": "speak",
  10705. "href": "https://drafts.csswg.org/css-speech-1/#propdef-speak",
  10706. "initial": "auto",
  10707. "appliesTo": "all elements",
  10708. "inherited": "yes",
  10709. "percentages": "N/A",
  10710. "computedValue": "specified value",
  10711. "canonicalOrder": "per grammar",
  10712. "styleDeclaration": [
  10713. "speak"
  10714. ],
  10715. "syntax": "auto | never | always",
  10716. "extended": []
  10717. }
  10718. ],
  10719. [
  10720. "speak-as",
  10721. {
  10722. "name": "speak-as",
  10723. "href": "https://drafts.csswg.org/css-speech-1/#propdef-speak-as",
  10724. "initial": "normal",
  10725. "appliesTo": "all elements",
  10726. "inherited": "yes",
  10727. "percentages": "N/A",
  10728. "computedValue": "specified value",
  10729. "canonicalOrder": "per grammar",
  10730. "styleDeclaration": [
  10731. "speak-as",
  10732. "speakAs"
  10733. ],
  10734. "syntax": "normal | spell-out || digits || [ literal-punctuation | no-punctuation ]",
  10735. "extended": []
  10736. }
  10737. ],
  10738. [
  10739. "stop-color",
  10740. {
  10741. "name": "stop-color",
  10742. "href": "https://svgwg.org/svg2-draft/pservers.html#StopColorProperty",
  10743. "styleDeclaration": [
  10744. "stop-color",
  10745. "stopColor"
  10746. ],
  10747. "extended": []
  10748. }
  10749. ],
  10750. [
  10751. "stop-opacity",
  10752. {
  10753. "name": "stop-opacity",
  10754. "href": "https://svgwg.org/svg2-draft/pservers.html#StopOpacityProperty",
  10755. "styleDeclaration": [
  10756. "stop-opacity",
  10757. "stopOpacity"
  10758. ],
  10759. "extended": []
  10760. }
  10761. ],
  10762. [
  10763. "string-set",
  10764. {
  10765. "name": "string-set",
  10766. "href": "https://drafts.csswg.org/css-content-3/#propdef-string-set",
  10767. "initial": "none",
  10768. "appliesTo": "all elements, but not pseudo-elements",
  10769. "inherited": "no",
  10770. "percentages": "N/A",
  10771. "computedValue": "the keyword none or a list, each item an identifier paired with a list of string values",
  10772. "canonicalOrder": "per grammar",
  10773. "animationType": "discrete",
  10774. "styleDeclaration": [
  10775. "string-set",
  10776. "stringSet"
  10777. ],
  10778. "syntax": "none | [ <custom-ident> <string>+ ]#",
  10779. "extended": []
  10780. }
  10781. ],
  10782. [
  10783. "stroke",
  10784. {
  10785. "name": "stroke",
  10786. "href": "https://svgwg.org/svg2-draft/painting.html#StrokeProperty",
  10787. "initial": "none",
  10788. "appliesTo": "shapes and text content elements",
  10789. "inherited": "yes",
  10790. "percentages": "N/A",
  10791. "media": "visual",
  10792. "computedValue": "as specified, but with <color> values computed and <url> values made absolute",
  10793. "animationType": "by computed value",
  10794. "styleDeclaration": [
  10795. "stroke"
  10796. ],
  10797. "syntax": "<paint>",
  10798. "extended": []
  10799. }
  10800. ],
  10801. [
  10802. "stroke-align",
  10803. {
  10804. "name": "stroke-align",
  10805. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-align",
  10806. "initial": "center",
  10807. "appliesTo": "text and SVG shapes",
  10808. "inherited": "yes",
  10809. "percentages": "N/A",
  10810. "computedValue": "as specified",
  10811. "canonicalOrder": "per grammar",
  10812. "animationType": "discrete",
  10813. "media": "visual",
  10814. "styleDeclaration": [
  10815. "stroke-align",
  10816. "strokeAlign"
  10817. ],
  10818. "syntax": "center | inset | outset",
  10819. "extended": []
  10820. }
  10821. ],
  10822. [
  10823. "stroke-alignment",
  10824. {
  10825. "name": "stroke-alignment",
  10826. "href": "https://svgwg.org/specs/strokes/#StrokeAlignmentProperty",
  10827. "initial": "center",
  10828. "appliesTo": "shapes and text content elements",
  10829. "inherited": "yes",
  10830. "percentages": "N/A",
  10831. "media": "visual",
  10832. "computed value": "as specified",
  10833. "animatable": "yes",
  10834. "styleDeclaration": [
  10835. "stroke-alignment",
  10836. "strokeAlignment"
  10837. ],
  10838. "syntax": "center | inner | outer",
  10839. "extended": []
  10840. }
  10841. ],
  10842. [
  10843. "stroke-break",
  10844. {
  10845. "name": "stroke-break",
  10846. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-break",
  10847. "initial": "bounding-box",
  10848. "appliesTo": "all elements",
  10849. "inherited": "?",
  10850. "percentages": "N/A",
  10851. "computedValue": "as specified",
  10852. "canonicalOrder": "per grammar",
  10853. "animationType": "discrete",
  10854. "media": "visual",
  10855. "styleDeclaration": [
  10856. "stroke-break",
  10857. "strokeBreak"
  10858. ],
  10859. "syntax": "bounding-box | slice | clone",
  10860. "extended": []
  10861. }
  10862. ],
  10863. [
  10864. "stroke-color",
  10865. {
  10866. "name": "stroke-color",
  10867. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-color",
  10868. "initial": "transparent",
  10869. "appliesTo": "text and SVG shapes",
  10870. "inherited": "yes",
  10871. "percentages": "N/A",
  10872. "computedValue": "the computed color",
  10873. "canonicalOrder": "per grammar",
  10874. "animationType": "by computed value",
  10875. "media": "visual",
  10876. "styleDeclaration": [
  10877. "stroke-color",
  10878. "strokeColor"
  10879. ],
  10880. "syntax": "<color>#",
  10881. "extended": []
  10882. }
  10883. ],
  10884. [
  10885. "stroke-dash-corner",
  10886. {
  10887. "name": "stroke-dash-corner",
  10888. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-dash-corner",
  10889. "initial": "none",
  10890. "appliesTo": "text and SVG shapes",
  10891. "inherited": "yes",
  10892. "percentages": "N/A",
  10893. "computedValue": "specified value, with lengths made absolute",
  10894. "canonicalOrder": "per grammar",
  10895. "animationType": "by computed value if <length>, otherwise discrete",
  10896. "media": "visual",
  10897. "styleDeclaration": [
  10898. "stroke-dash-corner",
  10899. "strokeDashCorner"
  10900. ],
  10901. "syntax": "none | <length>",
  10902. "extended": []
  10903. }
  10904. ],
  10905. [
  10906. "stroke-dash-justify",
  10907. {
  10908. "name": "stroke-dash-justify",
  10909. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-dash-justify",
  10910. "initial": "none",
  10911. "appliesTo": "text and SVG shapes",
  10912. "inherited": "yes",
  10913. "percentages": "N/A",
  10914. "computedValue": "specified value, with lengths made absolute",
  10915. "canonicalOrder": "per grammar",
  10916. "animationType": "discrete",
  10917. "media": "visual",
  10918. "styleDeclaration": [
  10919. "stroke-dash-justify",
  10920. "strokeDashJustify"
  10921. ],
  10922. "syntax": "none | [ stretch | compress ] || [ dashes || gaps ]",
  10923. "extended": []
  10924. }
  10925. ],
  10926. [
  10927. "stroke-dashadjust",
  10928. {
  10929. "name": "stroke-dashadjust",
  10930. "href": "https://svgwg.org/specs/strokes/#StrokeDashadjustProperty",
  10931. "initial": "none",
  10932. "appliesTo": "shapes and text content elements",
  10933. "inherited": "yes",
  10934. "percentages": "N/A",
  10935. "media": "visual",
  10936. "computed value": "as specified",
  10937. "animatable": "yes",
  10938. "styleDeclaration": [
  10939. "stroke-dashadjust",
  10940. "strokeDashadjust"
  10941. ],
  10942. "syntax": "none | [stretch | compress] [dashes | gaps]?",
  10943. "extended": []
  10944. }
  10945. ],
  10946. [
  10947. "stroke-dasharray",
  10948. {
  10949. "name": "stroke-dasharray",
  10950. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-dasharray",
  10951. "initial": "none",
  10952. "appliesTo": "text and SVG shapes",
  10953. "inherited": "yes",
  10954. "percentages": "relative to the scaled viewport size",
  10955. "computedValue": "as specified",
  10956. "canonicalOrder": "per grammar",
  10957. "animationType": "repeatable list",
  10958. "media": "visual",
  10959. "styleDeclaration": [
  10960. "stroke-dasharray",
  10961. "strokeDasharray"
  10962. ],
  10963. "syntax": "none | [<length-percentage> | <number>]+#",
  10964. "extended": []
  10965. }
  10966. ],
  10967. [
  10968. "stroke-dashcorner",
  10969. {
  10970. "name": "stroke-dashcorner",
  10971. "href": "https://svgwg.org/specs/strokes/#StrokeDashcornerProperty",
  10972. "initial": "none",
  10973. "appliesTo": "shapes and text content elements",
  10974. "inherited": "yes",
  10975. "percentages": "refer to the size of the current viewport (see Units)",
  10976. "media": "visual",
  10977. "computed value": "absolute length or keyword specified",
  10978. "animatable": "yes",
  10979. "styleDeclaration": [
  10980. "stroke-dashcorner",
  10981. "strokeDashcorner"
  10982. ],
  10983. "syntax": "none | <length>",
  10984. "extended": []
  10985. }
  10986. ],
  10987. [
  10988. "stroke-dashoffset",
  10989. {
  10990. "name": "stroke-dashoffset",
  10991. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-dashoffset",
  10992. "initial": "0",
  10993. "appliesTo": "text and SVG shapes",
  10994. "inherited": "yes",
  10995. "percentages": "relative to the scaled viewport size",
  10996. "computedValue": "as specified",
  10997. "canonicalOrder": "per grammar",
  10998. "animationType": "repeatable list",
  10999. "media": "visual",
  11000. "styleDeclaration": [
  11001. "stroke-dashoffset",
  11002. "strokeDashoffset"
  11003. ],
  11004. "syntax": "<length-percentage> | <number>",
  11005. "extended": []
  11006. }
  11007. ],
  11008. [
  11009. "stroke-image",
  11010. {
  11011. "name": "stroke-image",
  11012. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-image",
  11013. "initial": "none",
  11014. "appliesTo": "text and SVG shapes",
  11015. "inherited": "yes",
  11016. "percentages": "N/A",
  11017. "computedValue": "as specified, with any <image> computed",
  11018. "canonicalOrder": "per grammar",
  11019. "animationType": "repeatable list",
  11020. "media": "visual",
  11021. "styleDeclaration": [
  11022. "stroke-image",
  11023. "strokeImage"
  11024. ],
  11025. "syntax": "<paint>#",
  11026. "extended": []
  11027. }
  11028. ],
  11029. [
  11030. "stroke-linecap",
  11031. {
  11032. "name": "stroke-linecap",
  11033. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-linecap",
  11034. "initial": "butt",
  11035. "appliesTo": "text and SVG shapes",
  11036. "inherited": "yes",
  11037. "percentages": "N/A",
  11038. "computedValue": "as specified",
  11039. "canonicalOrder": "per grammar",
  11040. "animationType": "discrete",
  11041. "media": "visual",
  11042. "styleDeclaration": [
  11043. "stroke-linecap",
  11044. "strokeLinecap"
  11045. ],
  11046. "syntax": "butt | round | square",
  11047. "extended": []
  11048. }
  11049. ],
  11050. [
  11051. "stroke-linejoin",
  11052. {
  11053. "name": "stroke-linejoin",
  11054. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-linejoin",
  11055. "initial": "miter",
  11056. "appliesTo": "text and SVG shapes",
  11057. "inherited": "yes",
  11058. "percentages": "N/A",
  11059. "computedValue": "as specified",
  11060. "canonicalOrder": "per grammar",
  11061. "animationType": "discrete",
  11062. "media": "visual",
  11063. "styleDeclaration": [
  11064. "stroke-linejoin",
  11065. "strokeLinejoin"
  11066. ],
  11067. "syntax": "[ crop | arcs | miter ] || [ bevel | round | fallback ]",
  11068. "extended": []
  11069. }
  11070. ],
  11071. [
  11072. "stroke-miterlimit",
  11073. {
  11074. "name": "stroke-miterlimit",
  11075. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-miterlimit",
  11076. "initial": "4",
  11077. "appliesTo": "text and SVG shapes",
  11078. "inherited": "yes",
  11079. "percentages": "N/A",
  11080. "computedValue": "a number",
  11081. "canonicalOrder": "per grammar",
  11082. "animationType": "discrete",
  11083. "media": "visual",
  11084. "styleDeclaration": [
  11085. "stroke-miterlimit",
  11086. "strokeMiterlimit"
  11087. ],
  11088. "syntax": "<number>",
  11089. "extended": []
  11090. }
  11091. ],
  11092. [
  11093. "stroke-opacity",
  11094. {
  11095. "name": "stroke-opacity",
  11096. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-opacity",
  11097. "initial": "1",
  11098. "appliesTo": "text and SVG shapes",
  11099. "inherited": "yes",
  11100. "percentages": "N/A",
  11101. "computedValue": "the specified value converted to a <number>, clamped to the range [0,1]",
  11102. "canonicalOrder": "per grammar",
  11103. "animationType": "by computed value",
  11104. "media": "visual",
  11105. "styleDeclaration": [
  11106. "stroke-opacity",
  11107. "strokeOpacity"
  11108. ],
  11109. "syntax": "<'opacity'>",
  11110. "extended": []
  11111. }
  11112. ],
  11113. [
  11114. "stroke-origin",
  11115. {
  11116. "name": "stroke-origin",
  11117. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-origin",
  11118. "initial": "match-parent",
  11119. "appliesTo": "all elements",
  11120. "inherited": "no",
  11121. "percentages": "N/A",
  11122. "computedValue": "as specified",
  11123. "canonicalOrder": "per grammar",
  11124. "animationType": "discrete",
  11125. "media": "visual",
  11126. "styleDeclaration": [
  11127. "stroke-origin",
  11128. "strokeOrigin"
  11129. ],
  11130. "syntax": "match-parent | fill-box | stroke-box | content-box | padding-box | border-box",
  11131. "extended": []
  11132. }
  11133. ],
  11134. [
  11135. "stroke-position",
  11136. {
  11137. "name": "stroke-position",
  11138. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-position",
  11139. "initial": "0% 0%",
  11140. "appliesTo": "text and SVG shapes",
  11141. "inherited": "yes",
  11142. "percentages": "n/a",
  11143. "computedValue": "A list, each item consisting of: a pair of offsets (horizontal and vertical) from the top left origin each given as a combination of an absolute length and a percentage",
  11144. "canonicalOrder": "per grammar",
  11145. "animationType": "repeatable list",
  11146. "media": "visual",
  11147. "styleDeclaration": [
  11148. "stroke-position",
  11149. "strokePosition"
  11150. ],
  11151. "syntax": "<position>#",
  11152. "extended": []
  11153. }
  11154. ],
  11155. [
  11156. "stroke-repeat",
  11157. {
  11158. "name": "stroke-repeat",
  11159. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-repeat",
  11160. "initial": "repeat",
  11161. "appliesTo": "text and SVG shapes",
  11162. "inherited": "yes",
  11163. "percentages": "n/a",
  11164. "computedValue": "A list, each item consisting of: two keywords, one per dimension",
  11165. "canonicalOrder": "per grammar",
  11166. "animationType": "discrete",
  11167. "media": "visual",
  11168. "styleDeclaration": [
  11169. "stroke-repeat",
  11170. "strokeRepeat"
  11171. ],
  11172. "syntax": "<repeat-style>#",
  11173. "extended": []
  11174. }
  11175. ],
  11176. [
  11177. "stroke-size",
  11178. {
  11179. "name": "stroke-size",
  11180. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-size",
  11181. "initial": "auto",
  11182. "appliesTo": "text and SVG shapes",
  11183. "inherited": "yes",
  11184. "percentages": "n/a",
  11185. "computedValue": "as specified, but with lengths made absolute and omitted auto keywords filled in",
  11186. "canonicalOrder": "per grammar",
  11187. "animationType": "repeatable list",
  11188. "media": "visual",
  11189. "styleDeclaration": [
  11190. "stroke-size",
  11191. "strokeSize"
  11192. ],
  11193. "syntax": "<bg-size>#",
  11194. "extended": []
  11195. }
  11196. ],
  11197. [
  11198. "stroke-width",
  11199. {
  11200. "name": "stroke-width",
  11201. "href": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-width",
  11202. "initial": "1px",
  11203. "appliesTo": "text and SVG shapes",
  11204. "inherited": "yes",
  11205. "percentages": "relative to the scaled viewport size",
  11206. "computedValue": "the absolute length, or percentage",
  11207. "canonicalOrder": "per grammar",
  11208. "animationType": "by computed value",
  11209. "media": "visual",
  11210. "styleDeclaration": [
  11211. "stroke-width",
  11212. "strokeWidth"
  11213. ],
  11214. "syntax": "[<length-percentage> | <number>]#",
  11215. "extended": []
  11216. }
  11217. ],
  11218. [
  11219. "tab-size",
  11220. {
  11221. "name": "tab-size",
  11222. "href": "https://drafts.csswg.org/css-text-4/#propdef-tab-size",
  11223. "initial": "8",
  11224. "appliesTo": "text",
  11225. "inherited": "yes",
  11226. "percentages": "n/a",
  11227. "computedValue": "the specified number or absolute length",
  11228. "canonicalOrder": "n/a",
  11229. "animationType": "by computed value type",
  11230. "styleDeclaration": [
  11231. "tab-size",
  11232. "tabSize"
  11233. ],
  11234. "syntax": "<number [0,∞]> | <length [0,∞]>",
  11235. "extended": []
  11236. }
  11237. ],
  11238. [
  11239. "table-layout",
  11240. {
  11241. "name": "table-layout",
  11242. "href": "https://drafts.csswg.org/css-tables-3/#propdef-table-layout",
  11243. "initial": "auto",
  11244. "appliesTo": "table grid boxes",
  11245. "inherited": "no",
  11246. "percentages": "n/a",
  11247. "computedValue": "specified keyword",
  11248. "canonicalOrder": "per grammar",
  11249. "animationType": "discrete",
  11250. "styleDeclaration": [
  11251. "table-layout",
  11252. "tableLayout"
  11253. ],
  11254. "syntax": "auto | fixed",
  11255. "extended": []
  11256. }
  11257. ],
  11258. [
  11259. "text-align",
  11260. {
  11261. "name": "text-align",
  11262. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-align",
  11263. "initial": "start",
  11264. "appliesTo": "block containers",
  11265. "inherited": "yes",
  11266. "percentages": "see individual properties",
  11267. "computedValue": "see individual properties",
  11268. "animationType": "discrete",
  11269. "canonicalOrder": "n/a",
  11270. "styleDeclaration": [
  11271. "text-align",
  11272. "textAlign"
  11273. ],
  11274. "syntax": "start | end | left | right | center | <string> | justify | match-parent | justify-all",
  11275. "extended": []
  11276. }
  11277. ],
  11278. [
  11279. "text-align-all",
  11280. {
  11281. "name": "text-align-all",
  11282. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-align-all",
  11283. "initial": "start",
  11284. "appliesTo": "block containers",
  11285. "inherited": "yes",
  11286. "percentages": "n/a",
  11287. "computedValue": "keyword as specified, except for match-parent which computes as defined above",
  11288. "canonicalOrder": "n/a",
  11289. "animationType": "discrete",
  11290. "styleDeclaration": [
  11291. "text-align-all",
  11292. "textAlignAll"
  11293. ],
  11294. "syntax": "start | end | left | right | center | <string> | justify | match-parent",
  11295. "extended": []
  11296. }
  11297. ],
  11298. [
  11299. "text-align-last",
  11300. {
  11301. "name": "text-align-last",
  11302. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-align-last",
  11303. "initial": "auto",
  11304. "appliesTo": "block containers",
  11305. "inherited": "yes",
  11306. "percentages": "n/a",
  11307. "computedValue": "keyword as specified, except for match-parent which computes as defined above",
  11308. "canonicalOrder": "n/a",
  11309. "animationType": "discrete",
  11310. "styleDeclaration": [
  11311. "text-align-last",
  11312. "textAlignLast"
  11313. ],
  11314. "syntax": "auto | start | end | left | right | center | justify | match-parent",
  11315. "extended": []
  11316. }
  11317. ],
  11318. [
  11319. "text-anchor",
  11320. {
  11321. "name": "text-anchor",
  11322. "href": "https://svgwg.org/svg2-draft/text.html#TextAnchorProperty",
  11323. "initial": "start",
  11324. "appliesTo": "text content elements",
  11325. "inherited": "yes",
  11326. "percentages": "N/A",
  11327. "media": "visual",
  11328. "computedValue": "as specified",
  11329. "animationType": "discrete",
  11330. "styleDeclaration": [
  11331. "text-anchor",
  11332. "textAnchor"
  11333. ],
  11334. "syntax": "start | middle | end",
  11335. "extended": []
  11336. }
  11337. ],
  11338. [
  11339. "text-autospace",
  11340. {
  11341. "name": "text-autospace",
  11342. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-autospace",
  11343. "initial": "normal",
  11344. "appliesTo": "text",
  11345. "inherited": "yes",
  11346. "percentages": "N/A",
  11347. "computedValue": "specified keyword(s)",
  11348. "canonicalOrder": "per grammar",
  11349. "animationType": "discrete",
  11350. "styleDeclaration": [
  11351. "text-autospace",
  11352. "textAutospace"
  11353. ],
  11354. "syntax": "normal | <autospace> | auto",
  11355. "extended": []
  11356. }
  11357. ],
  11358. [
  11359. "text-box",
  11360. {
  11361. "name": "text-box",
  11362. "href": "https://drafts.csswg.org/css-inline-3/#propdef-text-box",
  11363. "initial": "normal",
  11364. "appliesTo": "block containers, multi-column containers, and inline boxes",
  11365. "inherited": "no",
  11366. "percentages": "N/A",
  11367. "computedValue": "the specified keyword",
  11368. "canonicalOrder": "per grammar",
  11369. "animationType": "discrete",
  11370. "styleDeclaration": [
  11371. "text-box",
  11372. "textBox"
  11373. ],
  11374. "syntax": "normal | <'text-box-trim'> || <'text-box-edge'>",
  11375. "extended": []
  11376. }
  11377. ],
  11378. [
  11379. "text-box-edge",
  11380. {
  11381. "name": "text-box-edge",
  11382. "href": "https://drafts.csswg.org/css-inline-3/#propdef-text-box-edge",
  11383. "initial": "auto",
  11384. "appliesTo": "block containers and inline boxes",
  11385. "inherited": "yes",
  11386. "percentages": "N/A",
  11387. "computedValue": "the specified keyword",
  11388. "canonicalOrder": "per grammar",
  11389. "animationType": "discrete",
  11390. "styleDeclaration": [
  11391. "text-box-edge",
  11392. "textBoxEdge"
  11393. ],
  11394. "syntax": "auto | <text-edge>",
  11395. "extended": []
  11396. }
  11397. ],
  11398. [
  11399. "text-box-trim",
  11400. {
  11401. "name": "text-box-trim",
  11402. "href": "https://drafts.csswg.org/css-inline-3/#propdef-text-box-trim",
  11403. "initial": "none",
  11404. "appliesTo": "block containers, multi-column containers, and inline boxes",
  11405. "inherited": "no",
  11406. "percentages": "N/A",
  11407. "computedValue": "the specified keyword",
  11408. "canonicalOrder": "per grammar",
  11409. "animationType": "discrete",
  11410. "styleDeclaration": [
  11411. "text-box-trim",
  11412. "textBoxTrim"
  11413. ],
  11414. "syntax": "none | trim-start | trim-end | trim-both",
  11415. "extended": []
  11416. }
  11417. ],
  11418. [
  11419. "text-combine-upright",
  11420. {
  11421. "name": "text-combine-upright",
  11422. "href": "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-combine-upright",
  11423. "initial": "none",
  11424. "appliesTo": "inline boxes and text",
  11425. "inherited": "yes",
  11426. "percentages": "n/a",
  11427. "computedValue": "specified keyword, plus integer if digits",
  11428. "canonicalOrder": "n/a",
  11429. "animationType": "not animatable",
  11430. "styleDeclaration": [
  11431. "text-combine-upright",
  11432. "textCombineUpright"
  11433. ],
  11434. "syntax": "none | all | [ digits <integer [2,4]>? ]",
  11435. "extended": []
  11436. }
  11437. ],
  11438. [
  11439. "text-decoration",
  11440. {
  11441. "name": "text-decoration",
  11442. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration",
  11443. "initial": "see individual properties",
  11444. "appliesTo": "see individual properties",
  11445. "inherited": "see individual properties",
  11446. "percentages": "see individual properties",
  11447. "computedValue": "see individual properties",
  11448. "animationType": "see individual properties",
  11449. "canonicalOrder": "per grammar",
  11450. "styleDeclaration": [
  11451. "text-decoration",
  11452. "textDecoration"
  11453. ],
  11454. "syntax": "<'text-decoration-line'> || <'text-decoration-thickness'> || <'text-decoration-style'> || <'text-decoration-color'>",
  11455. "extended": []
  11456. }
  11457. ],
  11458. [
  11459. "text-decoration-color",
  11460. {
  11461. "name": "text-decoration-color",
  11462. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-color",
  11463. "initial": "currentcolor",
  11464. "appliesTo": "all elements",
  11465. "inherited": "no",
  11466. "percentages": "n/a",
  11467. "computedValue": "computed color",
  11468. "canonicalOrder": "per grammar",
  11469. "animationType": "by computed value type",
  11470. "styleDeclaration": [
  11471. "text-decoration-color",
  11472. "textDecorationColor"
  11473. ],
  11474. "syntax": "<color>",
  11475. "extended": []
  11476. }
  11477. ],
  11478. [
  11479. "text-decoration-line",
  11480. {
  11481. "name": "text-decoration-line",
  11482. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-line",
  11483. "initial": "none",
  11484. "appliesTo": "all elements",
  11485. "inherited": "no (but see prose, above)",
  11486. "percentages": "n/a",
  11487. "computedValue": "specified keyword(s)",
  11488. "canonicalOrder": "per grammar",
  11489. "animationType": "discrete",
  11490. "styleDeclaration": [
  11491. "text-decoration-line",
  11492. "textDecorationLine"
  11493. ],
  11494. "syntax": "none | [ underline || overline || line-through || blink ] | spelling-error | grammar-error",
  11495. "extended": []
  11496. }
  11497. ],
  11498. [
  11499. "text-decoration-skip",
  11500. {
  11501. "name": "text-decoration-skip",
  11502. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip",
  11503. "initial": "See individual properties",
  11504. "appliesTo": "all elements",
  11505. "inherited": "yes",
  11506. "percentages": "N/A",
  11507. "computedValue": "See individual properties",
  11508. "canonicalOrder": "per grammar",
  11509. "animationType": "discrete",
  11510. "styleDeclaration": [
  11511. "text-decoration-skip",
  11512. "textDecorationSkip"
  11513. ],
  11514. "syntax": "none | auto",
  11515. "extended": []
  11516. }
  11517. ],
  11518. [
  11519. "text-decoration-skip-box",
  11520. {
  11521. "name": "text-decoration-skip-box",
  11522. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip-box",
  11523. "initial": "none",
  11524. "appliesTo": "all elements",
  11525. "inherited": "yes",
  11526. "percentages": "N/A",
  11527. "computedValue": "specified keyword(s)",
  11528. "canonicalOrder": "per grammar",
  11529. "animationType": "discrete",
  11530. "styleDeclaration": [
  11531. "text-decoration-skip-box",
  11532. "textDecorationSkipBox"
  11533. ],
  11534. "syntax": "none | all",
  11535. "extended": []
  11536. }
  11537. ],
  11538. [
  11539. "text-decoration-skip-ink",
  11540. {
  11541. "name": "text-decoration-skip-ink",
  11542. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip-ink",
  11543. "initial": "auto",
  11544. "appliesTo": "all elements",
  11545. "inherited": "yes",
  11546. "percentages": "N/A",
  11547. "computedValue": "specified keyword",
  11548. "canonicalOrder": "per grammar",
  11549. "animationType": "discrete",
  11550. "styleDeclaration": [
  11551. "text-decoration-skip-ink",
  11552. "textDecorationSkipInk"
  11553. ],
  11554. "syntax": "auto | none | all",
  11555. "extended": []
  11556. }
  11557. ],
  11558. [
  11559. "text-decoration-skip-self",
  11560. {
  11561. "name": "text-decoration-skip-self",
  11562. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip-self",
  11563. "initial": "auto",
  11564. "appliesTo": "all elements",
  11565. "inherited": "no",
  11566. "percentages": "N/A",
  11567. "computedValue": "specified keyword(s) except for skip-all, see below",
  11568. "canonicalOrder": "per grammar",
  11569. "animationType": "discrete",
  11570. "styleDeclaration": [
  11571. "text-decoration-skip-self",
  11572. "textDecorationSkipSelf"
  11573. ],
  11574. "syntax": "auto | skip-all | [ skip-underline || skip-overline || skip-line-through ] | no-skip",
  11575. "extended": []
  11576. }
  11577. ],
  11578. [
  11579. "text-decoration-skip-spaces",
  11580. {
  11581. "name": "text-decoration-skip-spaces",
  11582. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-skip-spaces",
  11583. "initial": "start end",
  11584. "appliesTo": "all elements",
  11585. "inherited": "yes",
  11586. "percentages": "N/A",
  11587. "computedValue": "specified keyword(s)",
  11588. "canonicalOrder": "per grammar",
  11589. "animationType": "discrete",
  11590. "styleDeclaration": [
  11591. "text-decoration-skip-spaces",
  11592. "textDecorationSkipSpaces"
  11593. ],
  11594. "syntax": "none | all | [ start || end ]",
  11595. "extended": []
  11596. }
  11597. ],
  11598. [
  11599. "text-decoration-style",
  11600. {
  11601. "name": "text-decoration-style",
  11602. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-style",
  11603. "initial": "solid",
  11604. "appliesTo": "all elements",
  11605. "inherited": "no",
  11606. "percentages": "n/a",
  11607. "computedValue": "specified keyword",
  11608. "canonicalOrder": "per grammar",
  11609. "animationType": "discrete",
  11610. "styleDeclaration": [
  11611. "text-decoration-style",
  11612. "textDecorationStyle"
  11613. ],
  11614. "syntax": "solid | double | dotted | dashed | wavy",
  11615. "extended": []
  11616. }
  11617. ],
  11618. [
  11619. "text-decoration-thickness",
  11620. {
  11621. "name": "text-decoration-thickness",
  11622. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-decoration-thickness",
  11623. "initial": "auto",
  11624. "appliesTo": "all elements",
  11625. "inherited": "no",
  11626. "percentages": "N/A",
  11627. "computedValue": "as specified, with <length-percentage> values computed",
  11628. "canonicalOrder": "per grammar",
  11629. "animationType": "by computed value",
  11630. "styleDeclaration": [
  11631. "text-decoration-thickness",
  11632. "textDecorationThickness"
  11633. ],
  11634. "syntax": "auto | from-font | <length-percentage>",
  11635. "extended": []
  11636. }
  11637. ],
  11638. [
  11639. "text-emphasis",
  11640. {
  11641. "name": "text-emphasis",
  11642. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis",
  11643. "initial": "see individual properties",
  11644. "appliesTo": "see individual properties",
  11645. "inherited": "see individual properties",
  11646. "percentages": "see individual properties",
  11647. "computedValue": "see individual properties",
  11648. "animationType": "see individual properties",
  11649. "canonicalOrder": "per grammar",
  11650. "styleDeclaration": [
  11651. "text-emphasis",
  11652. "textEmphasis"
  11653. ],
  11654. "syntax": "<'text-emphasis-style'> || <'text-emphasis-color'>",
  11655. "extended": []
  11656. }
  11657. ],
  11658. [
  11659. "text-emphasis-color",
  11660. {
  11661. "name": "text-emphasis-color",
  11662. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-color",
  11663. "initial": "currentcolor",
  11664. "appliesTo": "text",
  11665. "inherited": "yes",
  11666. "percentages": "n/a",
  11667. "computedValue": "computed color",
  11668. "canonicalOrder": "per grammar",
  11669. "animationType": "by computed value type",
  11670. "styleDeclaration": [
  11671. "text-emphasis-color",
  11672. "textEmphasisColor"
  11673. ],
  11674. "syntax": "<color>",
  11675. "extended": []
  11676. }
  11677. ],
  11678. [
  11679. "text-emphasis-position",
  11680. {
  11681. "name": "text-emphasis-position",
  11682. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-position",
  11683. "initial": "over right",
  11684. "appliesTo": "text",
  11685. "inherited": "yes",
  11686. "percentages": "n/a",
  11687. "computedValue": "specified keyword(s)",
  11688. "canonicalOrder": "per grammar",
  11689. "animationType": "discrete",
  11690. "styleDeclaration": [
  11691. "text-emphasis-position",
  11692. "textEmphasisPosition"
  11693. ],
  11694. "syntax": "[ over | under ] && [ right | left ]?",
  11695. "extended": []
  11696. }
  11697. ],
  11698. [
  11699. "text-emphasis-skip",
  11700. {
  11701. "name": "text-emphasis-skip",
  11702. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-skip",
  11703. "initial": "spaces punctuation",
  11704. "appliesTo": "text",
  11705. "inherited": "yes",
  11706. "percentages": "N/A",
  11707. "computedValue": "specified keyword(s)",
  11708. "canonicalOrder": "per grammar",
  11709. "animationType": "discrete",
  11710. "styleDeclaration": [
  11711. "text-emphasis-skip",
  11712. "textEmphasisSkip"
  11713. ],
  11714. "syntax": "spaces || punctuation || symbols || narrow",
  11715. "extended": []
  11716. }
  11717. ],
  11718. [
  11719. "text-emphasis-style",
  11720. {
  11721. "name": "text-emphasis-style",
  11722. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-emphasis-style",
  11723. "initial": "none",
  11724. "appliesTo": "text",
  11725. "inherited": "yes",
  11726. "percentages": "n/a",
  11727. "computedValue": "the keyword none, a pair of keywords representing the shape and fill, or a string",
  11728. "canonicalOrder": "per grammar",
  11729. "animationType": "discrete",
  11730. "styleDeclaration": [
  11731. "text-emphasis-style",
  11732. "textEmphasisStyle"
  11733. ],
  11734. "syntax": "none | [ [ filled | open ] || [ dot | circle | double-circle | triangle | sesame ] ] | <string>",
  11735. "extended": []
  11736. }
  11737. ],
  11738. [
  11739. "text-group-align",
  11740. {
  11741. "name": "text-group-align",
  11742. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-group-align",
  11743. "initial": "none",
  11744. "appliesTo": "block containers",
  11745. "inherited": "no",
  11746. "percentages": "N/A",
  11747. "computedValue": "specified keyword",
  11748. "canonicalOrder": "per grammar",
  11749. "animationType": "discrete",
  11750. "styleDeclaration": [
  11751. "text-group-align",
  11752. "textGroupAlign"
  11753. ],
  11754. "syntax": "none | start | end | left | right | center",
  11755. "extended": []
  11756. }
  11757. ],
  11758. [
  11759. "text-indent",
  11760. {
  11761. "name": "text-indent",
  11762. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-indent",
  11763. "initial": "0",
  11764. "appliesTo": "block containers",
  11765. "inherited": "yes",
  11766. "percentages": "refers to block container’s own inline-axis inner size",
  11767. "computedValue": "computed <length-percentage> value, plus any specified keywords",
  11768. "canonicalOrder": "per grammar",
  11769. "animationType": "by computed value type",
  11770. "styleDeclaration": [
  11771. "text-indent",
  11772. "textIndent"
  11773. ],
  11774. "syntax": "[ <length-percentage> ] && hanging? && each-line?",
  11775. "extended": []
  11776. }
  11777. ],
  11778. [
  11779. "text-justify",
  11780. {
  11781. "name": "text-justify",
  11782. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-justify",
  11783. "initial": "auto",
  11784. "appliesTo": "text",
  11785. "inherited": "yes",
  11786. "percentages": "n/a",
  11787. "computedValue": "specified keyword (except for the distribute legacy value)",
  11788. "canonicalOrder": "n/a",
  11789. "animationType": "discrete",
  11790. "styleDeclaration": [
  11791. "text-justify",
  11792. "textJustify"
  11793. ],
  11794. "syntax": "[ auto | none | inter-word | inter-character | ruby ] || no-compress",
  11795. "extended": []
  11796. }
  11797. ],
  11798. [
  11799. "text-orientation",
  11800. {
  11801. "name": "text-orientation",
  11802. "href": "https://drafts.csswg.org/css-writing-modes-4/#propdef-text-orientation",
  11803. "initial": "mixed",
  11804. "appliesTo": "all elements except table row groups, rows, column groups, and columns; and text",
  11805. "inherited": "yes",
  11806. "percentages": "n/a",
  11807. "computedValue": "specified value",
  11808. "canonicalOrder": "n/a",
  11809. "animationType": "not animatable",
  11810. "styleDeclaration": [
  11811. "text-orientation",
  11812. "textOrientation"
  11813. ],
  11814. "syntax": "mixed | upright | sideways",
  11815. "extended": []
  11816. }
  11817. ],
  11818. [
  11819. "text-overflow",
  11820. {
  11821. "name": "text-overflow",
  11822. "href": "https://drafts.csswg.org/css-overflow-4/#propdef-text-overflow",
  11823. "initial": "clip",
  11824. "appliesTo": "block containers",
  11825. "inherited": "no",
  11826. "percentages": "refer to the width of the line box",
  11827. "computedValue": "as specified, with lengths made absolute",
  11828. "canonicalOrder": "per grammar",
  11829. "animationType": "by computed value type",
  11830. "styleDeclaration": [
  11831. "text-overflow",
  11832. "textOverflow"
  11833. ],
  11834. "syntax": "[ clip | ellipsis | <string> | fade | <fade()> ]{1,2}",
  11835. "extended": []
  11836. }
  11837. ],
  11838. [
  11839. "text-rendering",
  11840. {
  11841. "name": "text-rendering",
  11842. "href": "https://svgwg.org/svg2-draft/painting.html#TextRenderingProperty",
  11843. "initial": "auto",
  11844. "appliesTo": "‘text’",
  11845. "inherited": "yes",
  11846. "percentages": "N/A",
  11847. "media": "visual",
  11848. "computedValue": "as specified",
  11849. "animationType": "discrete",
  11850. "styleDeclaration": [
  11851. "text-rendering",
  11852. "textRendering"
  11853. ],
  11854. "syntax": "auto | optimizeSpeed | optimizeLegibility | geometricPrecision",
  11855. "extended": []
  11856. }
  11857. ],
  11858. [
  11859. "text-shadow",
  11860. {
  11861. "name": "text-shadow",
  11862. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-shadow",
  11863. "initial": "none",
  11864. "appliesTo": "text",
  11865. "inherited": "yes",
  11866. "percentages": "n/a",
  11867. "computedValue": "either the keyword none or a list, each item consisting of four absolute lengths plus a computed color and optionally also an inset keyword",
  11868. "canonicalOrder": "per grammar",
  11869. "animationType": "as shadow list",
  11870. "styleDeclaration": [
  11871. "text-shadow",
  11872. "textShadow"
  11873. ],
  11874. "syntax": "none | <shadow>#",
  11875. "extended": []
  11876. }
  11877. ],
  11878. [
  11879. "text-spacing",
  11880. {
  11881. "name": "text-spacing",
  11882. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-spacing",
  11883. "initial": "see individual properties",
  11884. "appliesTo": "text",
  11885. "inherited": "yes",
  11886. "percentages": "N/A",
  11887. "computedValue": "specified keyword(s)",
  11888. "animationType": "discrete",
  11889. "canonicalOrder": "per grammar",
  11890. "styleDeclaration": [
  11891. "text-spacing",
  11892. "textSpacing"
  11893. ],
  11894. "syntax": "none | auto | <spacing-trim> || <autospace>",
  11895. "extended": []
  11896. }
  11897. ],
  11898. [
  11899. "text-spacing-trim",
  11900. {
  11901. "name": "text-spacing-trim",
  11902. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-spacing-trim",
  11903. "initial": "normal",
  11904. "appliesTo": "text",
  11905. "inherited": "yes",
  11906. "percentages": "N/A",
  11907. "computedValue": "specified keyword(s)",
  11908. "canonicalOrder": "per grammar",
  11909. "animationType": "discrete",
  11910. "styleDeclaration": [
  11911. "text-spacing-trim",
  11912. "textSpacingTrim"
  11913. ],
  11914. "syntax": "<spacing-trim> | auto",
  11915. "extended": []
  11916. }
  11917. ],
  11918. [
  11919. "text-transform",
  11920. {
  11921. "name": "text-transform",
  11922. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-transform",
  11923. "initial": "none",
  11924. "appliesTo": "text",
  11925. "inherited": "yes",
  11926. "percentages": "n/a",
  11927. "computedValue": "specified keyword",
  11928. "canonicalOrder": "n/a",
  11929. "animationType": "discrete",
  11930. "styleDeclaration": [
  11931. "text-transform",
  11932. "textTransform"
  11933. ],
  11934. "syntax": "none | [capitalize | uppercase | lowercase ] || full-width || full-size-kana | math-auto",
  11935. "extended": []
  11936. }
  11937. ],
  11938. [
  11939. "text-underline-offset",
  11940. {
  11941. "name": "text-underline-offset",
  11942. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-underline-offset",
  11943. "initial": "auto",
  11944. "appliesTo": "all elements",
  11945. "inherited": "yes",
  11946. "percentages": "N/A",
  11947. "computedValue": "as specified, with <length-percentage> values computed",
  11948. "canonicalOrder": "per grammar",
  11949. "animationType": "by computed value",
  11950. "styleDeclaration": [
  11951. "text-underline-offset",
  11952. "textUnderlineOffset"
  11953. ],
  11954. "syntax": "auto | <length-percentage>",
  11955. "extended": []
  11956. }
  11957. ],
  11958. [
  11959. "text-underline-position",
  11960. {
  11961. "name": "text-underline-position",
  11962. "href": "https://drafts.csswg.org/css-text-decor-4/#propdef-text-underline-position",
  11963. "initial": "auto",
  11964. "appliesTo": "all elements",
  11965. "inherited": "yes",
  11966. "percentages": "n/a",
  11967. "computedValue": "specified keyword(s)",
  11968. "canonicalOrder": "per grammar",
  11969. "animationType": "discrete",
  11970. "styleDeclaration": [
  11971. "text-underline-position",
  11972. "textUnderlinePosition"
  11973. ],
  11974. "syntax": "auto | [ from-font | under ] || [ left | right ]",
  11975. "extended": []
  11976. }
  11977. ],
  11978. [
  11979. "text-wrap",
  11980. {
  11981. "name": "text-wrap",
  11982. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-wrap",
  11983. "initial": "wrap",
  11984. "appliesTo": "see individual properties",
  11985. "inherited": "see individual properties",
  11986. "percentages": "see individual properties",
  11987. "computedValue": "see individual properties",
  11988. "canonicalOrder": "per grammar",
  11989. "animationType": "see individual properties",
  11990. "styleDeclaration": [
  11991. "text-wrap",
  11992. "textWrap"
  11993. ],
  11994. "syntax": "<'text-wrap-mode'> || <'text-wrap-style'>",
  11995. "extended": []
  11996. }
  11997. ],
  11998. [
  11999. "text-wrap-mode",
  12000. {
  12001. "name": "text-wrap-mode",
  12002. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-wrap-mode",
  12003. "initial": "wrap",
  12004. "appliesTo": "text",
  12005. "inherited": "yes",
  12006. "percentages": "n/a",
  12007. "computedValue": "specified keyword",
  12008. "canonicalOrder": "per grammar",
  12009. "animationType": "discrete",
  12010. "styleDeclaration": [
  12011. "text-wrap-mode",
  12012. "textWrapMode"
  12013. ],
  12014. "syntax": "wrap | nowrap",
  12015. "extended": []
  12016. }
  12017. ],
  12018. [
  12019. "text-wrap-style",
  12020. {
  12021. "name": "text-wrap-style",
  12022. "href": "https://drafts.csswg.org/css-text-4/#propdef-text-wrap-style",
  12023. "initial": "auto",
  12024. "appliesTo": "block containers hat establish an inline formatting context",
  12025. "inherited": "yes",
  12026. "percentages": "n/a",
  12027. "computedValue": "specified keyword",
  12028. "canonicalOrder": "per grammar",
  12029. "animationType": "discrete",
  12030. "styleDeclaration": [
  12031. "text-wrap-style",
  12032. "textWrapStyle"
  12033. ],
  12034. "syntax": "auto | balance | stable | pretty | avoid-orphans",
  12035. "extended": []
  12036. }
  12037. ],
  12038. [
  12039. "timeline-scope",
  12040. {
  12041. "name": "timeline-scope",
  12042. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-timeline-scope",
  12043. "initial": "none",
  12044. "appliesTo": "all elements",
  12045. "inherited": "no",
  12046. "percentages": "n/a",
  12047. "computedValue": "the keyword none or a list of CSS identifiers",
  12048. "canonicalOrder": "per grammar",
  12049. "animationType": "not animatable",
  12050. "styleDeclaration": [
  12051. "timeline-scope",
  12052. "timelineScope"
  12053. ],
  12054. "syntax": "none | all | <dashed-ident>#",
  12055. "extended": []
  12056. }
  12057. ],
  12058. [
  12059. "top",
  12060. {
  12061. "name": "top",
  12062. "href": "https://drafts.csswg.org/css-position-3/#propdef-top",
  12063. "initial": "auto",
  12064. "appliesTo": "positioned elements",
  12065. "inherited": "no",
  12066. "percentages": "refer to size of containing block; see prose",
  12067. "computedValue": "the keyword auto or a computed <length-percentage> value",
  12068. "canonicalOrder": "per grammar",
  12069. "animationType": "by computed value type",
  12070. "logicalPropertyGroup": "inset",
  12071. "styleDeclaration": [
  12072. "top"
  12073. ],
  12074. "syntax": "auto | <length-percentage> | <anchor()> | <anchor-size()>",
  12075. "extended": [
  12076. "https://drafts.csswg.org/css-anchor-position-1/"
  12077. ]
  12078. }
  12079. ],
  12080. [
  12081. "transform",
  12082. {
  12083. "name": "transform",
  12084. "href": "https://drafts.csswg.org/css-transforms-1/#propdef-transform",
  12085. "initial": "none",
  12086. "appliesTo": "transformable elements",
  12087. "inherited": "no",
  12088. "percentages": "refer to the size of reference box",
  12089. "computedValue": "as specified, but with lengths made absolute",
  12090. "canonicalOrder": "per grammar",
  12091. "animationType": "transform list, see interpolation rules",
  12092. "styleDeclaration": [
  12093. "transform"
  12094. ],
  12095. "syntax": "none | <transform-list>",
  12096. "extended": []
  12097. }
  12098. ],
  12099. [
  12100. "transform-box",
  12101. {
  12102. "name": "transform-box",
  12103. "href": "https://drafts.csswg.org/css-transforms-1/#propdef-transform-box",
  12104. "initial": "view-box",
  12105. "appliesTo": "transformable elements",
  12106. "inherited": "no",
  12107. "percentages": "N/A",
  12108. "computedValue": "specified keyword",
  12109. "canonicalOrder": "per grammar",
  12110. "animationType": "discrete",
  12111. "styleDeclaration": [
  12112. "transform-box",
  12113. "transformBox"
  12114. ],
  12115. "syntax": "content-box | border-box | fill-box | stroke-box | view-box",
  12116. "extended": []
  12117. }
  12118. ],
  12119. [
  12120. "transform-origin",
  12121. {
  12122. "name": "transform-origin",
  12123. "href": "https://drafts.csswg.org/css-transforms-1/#propdef-transform-origin",
  12124. "initial": "50% 50%",
  12125. "appliesTo": "transformable elements",
  12126. "inherited": "no",
  12127. "percentages": "refer to the size of reference box",
  12128. "computedValue": "see background-position",
  12129. "canonicalOrder": "per grammar",
  12130. "animationType": "by computed value",
  12131. "styleDeclaration": [
  12132. "transform-origin",
  12133. "transformOrigin"
  12134. ],
  12135. "syntax": "[ left | center | right | top | bottom | <length-percentage> ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ] <length>? | [ [ center | left | right ] && [ center | top | bottom ] ] <length>?",
  12136. "extended": []
  12137. }
  12138. ],
  12139. [
  12140. "transform-style",
  12141. {
  12142. "name": "transform-style",
  12143. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-transform-style",
  12144. "initial": "flat",
  12145. "appliesTo": "transformable elements",
  12146. "inherited": "no",
  12147. "percentages": "N/A",
  12148. "computedValue": "specified keyword",
  12149. "canonicalOrder": "per grammar",
  12150. "animationType": "discrete",
  12151. "usedValue": "flat if a grouping property is present, specified keyword otherwise",
  12152. "styleDeclaration": [
  12153. "transform-style",
  12154. "transformStyle"
  12155. ],
  12156. "syntax": "flat | preserve-3d",
  12157. "extended": []
  12158. }
  12159. ],
  12160. [
  12161. "transition",
  12162. {
  12163. "name": "transition",
  12164. "href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition",
  12165. "initial": "see individual properties",
  12166. "appliesTo": "all elements",
  12167. "inherited": "no",
  12168. "percentages": "N/A",
  12169. "computedValue": "see individual properties",
  12170. "animationType": "not animatable",
  12171. "canonicalOrder": "per grammar",
  12172. "styleDeclaration": [
  12173. "transition"
  12174. ],
  12175. "syntax": "<single-transition>#",
  12176. "extended": []
  12177. }
  12178. ],
  12179. [
  12180. "transition-behavior",
  12181. {
  12182. "name": "transition-behavior",
  12183. "href": "https://drafts.csswg.org/css-transitions-2/#propdef-transition-behavior",
  12184. "initial": "normal",
  12185. "appliesTo": "all elements",
  12186. "inherited": "no",
  12187. "percentages": "N/A",
  12188. "computedValue": "as specified",
  12189. "canonicalOrder": "per grammar",
  12190. "animationType": "not animatable",
  12191. "styleDeclaration": [
  12192. "transition-behavior",
  12193. "transitionBehavior"
  12194. ],
  12195. "syntax": "<transition-behavior-value>#",
  12196. "extended": []
  12197. }
  12198. ],
  12199. [
  12200. "transition-delay",
  12201. {
  12202. "name": "transition-delay",
  12203. "href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-delay",
  12204. "initial": "0s",
  12205. "appliesTo": "all elements",
  12206. "inherited": "no",
  12207. "percentages": "N/A",
  12208. "computedValue": "list, each item a duration",
  12209. "canonicalOrder": "per grammar",
  12210. "animationType": "not animatable",
  12211. "styleDeclaration": [
  12212. "transition-delay",
  12213. "transitionDelay"
  12214. ],
  12215. "syntax": "<time>#",
  12216. "extended": []
  12217. }
  12218. ],
  12219. [
  12220. "transition-duration",
  12221. {
  12222. "name": "transition-duration",
  12223. "href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-duration",
  12224. "initial": "0s",
  12225. "appliesTo": "all elements",
  12226. "inherited": "no",
  12227. "percentages": "N/A",
  12228. "computedValue": "list, each item a duration",
  12229. "canonicalOrder": "per grammar",
  12230. "animationType": "not animatable",
  12231. "styleDeclaration": [
  12232. "transition-duration",
  12233. "transitionDuration"
  12234. ],
  12235. "syntax": "<time [0s,∞]>#",
  12236. "extended": []
  12237. }
  12238. ],
  12239. [
  12240. "transition-property",
  12241. {
  12242. "name": "transition-property",
  12243. "href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-property",
  12244. "initial": "all",
  12245. "appliesTo": "all elements",
  12246. "inherited": "no",
  12247. "percentages": "N/A",
  12248. "computedValue": "the keyword none else a list of identifiers",
  12249. "canonicalOrder": "per grammar",
  12250. "animationType": "not animatable",
  12251. "styleDeclaration": [
  12252. "transition-property",
  12253. "transitionProperty"
  12254. ],
  12255. "syntax": "none | <single-transition-property>#",
  12256. "extended": []
  12257. }
  12258. ],
  12259. [
  12260. "transition-timing-function",
  12261. {
  12262. "name": "transition-timing-function",
  12263. "href": "https://drafts.csswg.org/css-transitions-1/#propdef-transition-timing-function",
  12264. "initial": "ease",
  12265. "appliesTo": "all elements",
  12266. "inherited": "no",
  12267. "percentages": "N/A",
  12268. "computedValue": "as specified",
  12269. "canonicalOrder": "per grammar",
  12270. "animationType": "not animatable",
  12271. "styleDeclaration": [
  12272. "transition-timing-function",
  12273. "transitionTimingFunction"
  12274. ],
  12275. "syntax": "<easing-function>#",
  12276. "extended": []
  12277. }
  12278. ],
  12279. [
  12280. "translate",
  12281. {
  12282. "name": "translate",
  12283. "href": "https://drafts.csswg.org/css-transforms-2/#propdef-translate",
  12284. "initial": "none",
  12285. "appliesTo": "transformable elements",
  12286. "inherited": "no",
  12287. "percentages": "relative to the width of the reference box (for the first value) or the height (for the second value)",
  12288. "computedValue": "the keyword none or a pair of computed <length-percentage> values and an absolute length",
  12289. "canonicalOrder": "per grammar",
  12290. "animationType": "by computed value, but see below for none",
  12291. "styleDeclaration": [
  12292. "translate"
  12293. ],
  12294. "syntax": "none | <length-percentage> [ <length-percentage> <length>? ]?",
  12295. "extended": []
  12296. }
  12297. ],
  12298. [
  12299. "unicode-bidi",
  12300. {
  12301. "name": "unicode-bidi",
  12302. "href": "https://drafts.csswg.org/css-writing-modes-4/#propdef-unicode-bidi",
  12303. "initial": "normal",
  12304. "appliesTo": "all elements, but see prose",
  12305. "inherited": "no",
  12306. "percentages": "n/a",
  12307. "computedValue": "specified value",
  12308. "canonicalOrder": "per grammar",
  12309. "animationType": "not animatable",
  12310. "styleDeclaration": [
  12311. "unicode-bidi",
  12312. "unicodeBidi"
  12313. ],
  12314. "syntax": "normal | embed | isolate | bidi-override | isolate-override | plaintext",
  12315. "extended": []
  12316. }
  12317. ],
  12318. [
  12319. "user-select",
  12320. {
  12321. "name": "user-select",
  12322. "href": "https://drafts.csswg.org/css-ui-4/#propdef-user-select",
  12323. "initial": "auto",
  12324. "appliesTo": "all elements, and optionally to the ::before and ::after pseudo-elements",
  12325. "inherited": "no",
  12326. "percentages": "n/a",
  12327. "computedValue": "specified keyword",
  12328. "canonicalOrder": "per grammar",
  12329. "animationType": "discrete",
  12330. "styleDeclaration": [
  12331. "user-select",
  12332. "userSelect"
  12333. ],
  12334. "syntax": "auto | text | none | contain | all",
  12335. "extended": []
  12336. }
  12337. ],
  12338. [
  12339. "vector-effect",
  12340. {
  12341. "name": "vector-effect",
  12342. "href": "https://svgwg.org/svg2-draft/coords.html#VectorEffectProperty",
  12343. "initial": "none",
  12344. "appliesTo": "graphics elements and ‘use’",
  12345. "inherited": "no",
  12346. "percentages": "N/A",
  12347. "media": "visual",
  12348. "computedValue": "as specified",
  12349. "animationType": "discrete",
  12350. "styleDeclaration": [
  12351. "vector-effect",
  12352. "vectorEffect"
  12353. ],
  12354. "syntax": "none | non-scaling-stroke | non-scaling-size | non-rotation | fixed-position",
  12355. "extended": []
  12356. }
  12357. ],
  12358. [
  12359. "vertical-align",
  12360. {
  12361. "name": "vertical-align",
  12362. "href": "https://drafts.csswg.org/css-inline-3/#propdef-vertical-align",
  12363. "initial": "baseline",
  12364. "appliesTo": "see individual properties",
  12365. "inherited": "no",
  12366. "percentages": "N/A",
  12367. "computedValue": "see individual properties",
  12368. "animationType": "see individual properties",
  12369. "canonicalOrder": "per grammar",
  12370. "styleDeclaration": [
  12371. "vertical-align",
  12372. "verticalAlign"
  12373. ],
  12374. "syntax": "[ first | last] || <'alignment-baseline'> || <'baseline-shift'>",
  12375. "extended": []
  12376. }
  12377. ],
  12378. [
  12379. "view-timeline",
  12380. {
  12381. "name": "view-timeline",
  12382. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline",
  12383. "initial": "see individual properties",
  12384. "appliesTo": "all elements",
  12385. "inherited": "see individual properties",
  12386. "percentages": "see individual properties",
  12387. "computedValue": "see individual properties",
  12388. "animationType": "see individual properties",
  12389. "canonicalOrder": "per grammar",
  12390. "styleDeclaration": [
  12391. "view-timeline",
  12392. "viewTimeline"
  12393. ],
  12394. "syntax": "[ <'view-timeline-name'> [ <'view-timeline-axis'> || <'view-timeline-inset'> ]? ]#",
  12395. "extended": []
  12396. }
  12397. ],
  12398. [
  12399. "view-timeline-axis",
  12400. {
  12401. "name": "view-timeline-axis",
  12402. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-axis",
  12403. "initial": "block",
  12404. "appliesTo": "all elements",
  12405. "inherited": "no",
  12406. "percentages": "n/a",
  12407. "computedValue": "a list of the keywords specified",
  12408. "canonicalOrder": "per grammar",
  12409. "animationType": "not animatable",
  12410. "styleDeclaration": [
  12411. "view-timeline-axis",
  12412. "viewTimelineAxis"
  12413. ],
  12414. "syntax": "[ block | inline | x | y ]#",
  12415. "extended": []
  12416. }
  12417. ],
  12418. [
  12419. "view-timeline-inset",
  12420. {
  12421. "name": "view-timeline-inset",
  12422. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-inset",
  12423. "initial": "auto",
  12424. "appliesTo": "all elements",
  12425. "inherited": "no",
  12426. "percentages": "relative to the corresponding dimension of the relevant scrollport",
  12427. "computedValue": "a list consisting of two-value pairs representing the start and end insets each as either the keyword auto or a computed <length-percentage> value",
  12428. "canonicalOrder": "per grammar",
  12429. "animationType": "by computed value type",
  12430. "styleDeclaration": [
  12431. "view-timeline-inset",
  12432. "viewTimelineInset"
  12433. ],
  12434. "syntax": "[ [ auto | <length-percentage> ]{1,2} ]#",
  12435. "extended": []
  12436. }
  12437. ],
  12438. [
  12439. "view-timeline-name",
  12440. {
  12441. "name": "view-timeline-name",
  12442. "href": "https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-name",
  12443. "initial": "none",
  12444. "appliesTo": "all elements",
  12445. "inherited": "no",
  12446. "percentages": "n/a",
  12447. "computedValue": "the keyword none or a list of CSS identifiers",
  12448. "canonicalOrder": "per grammar",
  12449. "animationType": "not animatable",
  12450. "styleDeclaration": [
  12451. "view-timeline-name",
  12452. "viewTimelineName"
  12453. ],
  12454. "syntax": "[ none | <dashed-ident> ]#",
  12455. "extended": []
  12456. }
  12457. ],
  12458. [
  12459. "view-transition-class",
  12460. {
  12461. "name": "view-transition-class",
  12462. "href": "https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-class",
  12463. "initial": "none",
  12464. "appliesTo": "all elements",
  12465. "inherited": "no",
  12466. "percentages": "n/a",
  12467. "computedValue": "as specified",
  12468. "canonicalOrder": "per grammar",
  12469. "animationType": "discrete",
  12470. "styleDeclaration": [
  12471. "view-transition-class",
  12472. "viewTransitionClass"
  12473. ],
  12474. "syntax": "none | <custom-ident>+",
  12475. "extended": []
  12476. }
  12477. ],
  12478. [
  12479. "view-transition-group",
  12480. {
  12481. "name": "view-transition-group",
  12482. "href": "https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-group",
  12483. "initial": "normal",
  12484. "appliesTo": "all elements",
  12485. "inherited": "no",
  12486. "percentages": "n/a",
  12487. "computedValue": "as specified",
  12488. "canonicalOrder": "per grammar",
  12489. "animationType": "discrete",
  12490. "styleDeclaration": [
  12491. "view-transition-group",
  12492. "viewTransitionGroup"
  12493. ],
  12494. "syntax": "normal | contain | nearest | <custom-ident>",
  12495. "extended": []
  12496. }
  12497. ],
  12498. [
  12499. "view-transition-name",
  12500. {
  12501. "name": "view-transition-name",
  12502. "href": "https://drafts.csswg.org/css-view-transitions-2/#propdef-view-transition-name",
  12503. "initial": "none",
  12504. "appliesTo": "all elements",
  12505. "inherited": "no",
  12506. "percentages": "n/a",
  12507. "computedValue": "as specified",
  12508. "canonicalOrder": "per grammar",
  12509. "animationType": "discrete",
  12510. "styleDeclaration": [
  12511. "view-transition-name",
  12512. "viewTransitionName"
  12513. ],
  12514. "syntax": "none | <custom-ident>",
  12515. "extended": []
  12516. }
  12517. ],
  12518. [
  12519. "visibility",
  12520. {
  12521. "name": "visibility",
  12522. "href": "https://drafts.csswg.org/css-display-4/#propdef-visibility",
  12523. "initial": "visible",
  12524. "appliesTo": "all elements",
  12525. "inherited": "yes",
  12526. "percentages": "N/A",
  12527. "computedValue": "as specified",
  12528. "canonicalOrder": "per grammar",
  12529. "animationType": "discrete",
  12530. "media": "visual",
  12531. "styleDeclaration": [
  12532. "visibility"
  12533. ],
  12534. "syntax": "visible | hidden | force-hidden | collapse",
  12535. "extended": []
  12536. }
  12537. ],
  12538. [
  12539. "voice-balance",
  12540. {
  12541. "name": "voice-balance",
  12542. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-balance",
  12543. "initial": "center",
  12544. "appliesTo": "all elements",
  12545. "inherited": "yes",
  12546. "percentages": "N/A",
  12547. "computedValue": "the specified value resolved to a <number> between -100 and 100 (inclusive)",
  12548. "canonicalOrder": "per grammar",
  12549. "styleDeclaration": [
  12550. "voice-balance",
  12551. "voiceBalance"
  12552. ],
  12553. "syntax": "<number> | left | center | right | leftwards | rightwards",
  12554. "extended": []
  12555. }
  12556. ],
  12557. [
  12558. "voice-duration",
  12559. {
  12560. "name": "voice-duration",
  12561. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-duration",
  12562. "initial": "auto",
  12563. "appliesTo": "all elements",
  12564. "inherited": "no",
  12565. "percentages": "N/A",
  12566. "computedValue": "specified value",
  12567. "canonicalOrder": "per grammar",
  12568. "styleDeclaration": [
  12569. "voice-duration",
  12570. "voiceDuration"
  12571. ],
  12572. "syntax": "auto | <time [0s,∞]>",
  12573. "extended": []
  12574. }
  12575. ],
  12576. [
  12577. "voice-family",
  12578. {
  12579. "name": "voice-family",
  12580. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-family",
  12581. "initial": "implementation-dependent",
  12582. "appliesTo": "all elements",
  12583. "inherited": "yes",
  12584. "percentages": "N/A",
  12585. "computedValue": "specified value",
  12586. "canonicalOrder": "per grammar",
  12587. "styleDeclaration": [
  12588. "voice-family",
  12589. "voiceFamily"
  12590. ],
  12591. "syntax": "[[<family-name> | <generic-voice>],]* [<family-name> | <generic-voice>] | preserve",
  12592. "extended": []
  12593. }
  12594. ],
  12595. [
  12596. "voice-pitch",
  12597. {
  12598. "name": "voice-pitch",
  12599. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-pitch",
  12600. "initial": "medium",
  12601. "appliesTo": "all elements",
  12602. "inherited": "yes",
  12603. "percentages": "refer to inherited value",
  12604. "computedValue": "one of the predefined pitch keywords if only the keyword is specified by itself, otherwise an absolute frequency calculated by converting the keyword value (if any) to a fixed frequency based on the current voice-family and by applying the specified relative offset (if any)",
  12605. "canonicalOrder": "per grammar",
  12606. "styleDeclaration": [
  12607. "voice-pitch",
  12608. "voicePitch"
  12609. ],
  12610. "syntax": "<frequency [0Hz,∞]> && absolute | [[x-low | low | medium | high | x-high] || [<frequency> | <semitones> | <percentage>]]",
  12611. "extended": []
  12612. }
  12613. ],
  12614. [
  12615. "voice-range",
  12616. {
  12617. "name": "voice-range",
  12618. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-range",
  12619. "initial": "medium",
  12620. "appliesTo": "all elements",
  12621. "inherited": "yes",
  12622. "percentages": "refer to inherited value",
  12623. "computedValue": "one of the predefined pitch keywords if only the keyword is specified by itself, otherwise an absolute frequency calculated by converting the keyword value (if any) to a fixed frequency based on the current voice-family and by applying the specified relative offset (if any)",
  12624. "canonicalOrder": "per grammar",
  12625. "styleDeclaration": [
  12626. "voice-range",
  12627. "voiceRange"
  12628. ],
  12629. "syntax": "<frequency [0Hz,∞]> && absolute | [[x-low | low | medium | high | x-high] || [<frequency> | <semitones> | <percentage>]]",
  12630. "extended": []
  12631. }
  12632. ],
  12633. [
  12634. "voice-rate",
  12635. {
  12636. "name": "voice-rate",
  12637. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-rate",
  12638. "initial": "normal",
  12639. "appliesTo": "all elements",
  12640. "inherited": "yes",
  12641. "percentages": "refer to default value",
  12642. "computedValue": "a keyword value, and optionally also a percentage relative to the keyword (if not 100%)",
  12643. "canonicalOrder": "per grammar",
  12644. "styleDeclaration": [
  12645. "voice-rate",
  12646. "voiceRate"
  12647. ],
  12648. "syntax": "[normal | x-slow | slow | medium | fast | x-fast] || <percentage [0,∞]>",
  12649. "extended": []
  12650. }
  12651. ],
  12652. [
  12653. "voice-stress",
  12654. {
  12655. "name": "voice-stress",
  12656. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-stress",
  12657. "initial": "normal",
  12658. "appliesTo": "all elements",
  12659. "inherited": "yes",
  12660. "percentages": "N/A",
  12661. "computedValue": "specified value",
  12662. "canonicalOrder": "per grammar",
  12663. "styleDeclaration": [
  12664. "voice-stress",
  12665. "voiceStress"
  12666. ],
  12667. "syntax": "normal | strong | moderate | none | reduced",
  12668. "extended": []
  12669. }
  12670. ],
  12671. [
  12672. "voice-volume",
  12673. {
  12674. "name": "voice-volume",
  12675. "href": "https://drafts.csswg.org/css-speech-1/#propdef-voice-volume",
  12676. "initial": "medium",
  12677. "appliesTo": "all elements",
  12678. "inherited": "yes",
  12679. "percentages": "N/A",
  12680. "computedValue": "silent, or a keyword value and optionally also a decibel offset (if not zero)",
  12681. "canonicalOrder": "per grammar",
  12682. "styleDeclaration": [
  12683. "voice-volume",
  12684. "voiceVolume"
  12685. ],
  12686. "syntax": "silent | [[x-soft | soft | medium | loud | x-loud] || <decibel>]",
  12687. "extended": []
  12688. }
  12689. ],
  12690. [
  12691. "white-space",
  12692. {
  12693. "name": "white-space",
  12694. "href": "https://drafts.csswg.org/css-text-4/#propdef-white-space",
  12695. "initial": "normal",
  12696. "appliesTo": "text",
  12697. "inherited": "see individual properties",
  12698. "percentages": "n/a",
  12699. "computedValue": "specified keyword",
  12700. "canonicalOrder": "n/a",
  12701. "animationType": "discrete",
  12702. "styleDeclaration": [
  12703. "white-space",
  12704. "whiteSpace"
  12705. ],
  12706. "syntax": "normal | pre | pre-wrap | pre-line | <'white-space-collapse'> || <'text-wrap-mode'> || <'white-space-trim'>",
  12707. "extended": []
  12708. }
  12709. ],
  12710. [
  12711. "white-space-collapse",
  12712. {
  12713. "name": "white-space-collapse",
  12714. "href": "https://drafts.csswg.org/css-text-4/#propdef-white-space-collapse",
  12715. "initial": "collapse",
  12716. "appliesTo": "text",
  12717. "inherited": "yes",
  12718. "percentages": "n/a",
  12719. "computedValue": "specified keyword",
  12720. "canonicalOrder": "per grammar",
  12721. "animationType": "discrete",
  12722. "styleDeclaration": [
  12723. "white-space-collapse",
  12724. "whiteSpaceCollapse"
  12725. ],
  12726. "syntax": "collapse | discard | preserve | preserve-breaks | preserve-spaces | break-spaces",
  12727. "extended": []
  12728. }
  12729. ],
  12730. [
  12731. "white-space-trim",
  12732. {
  12733. "name": "white-space-trim",
  12734. "href": "https://drafts.csswg.org/css-text-4/#propdef-white-space-trim",
  12735. "initial": "none",
  12736. "appliesTo": "inline boxes and block containers",
  12737. "inherited": "no",
  12738. "percentages": "n/a",
  12739. "computedValue": "specified keyword(s)",
  12740. "canonicalOrder": "per grammar",
  12741. "animationType": "discrete",
  12742. "styleDeclaration": [
  12743. "white-space-trim",
  12744. "whiteSpaceTrim"
  12745. ],
  12746. "syntax": "none | discard-before || discard-after || discard-inner",
  12747. "extended": []
  12748. }
  12749. ],
  12750. [
  12751. "widows",
  12752. {
  12753. "name": "widows",
  12754. "href": "https://drafts.csswg.org/css-break-4/#propdef-widows",
  12755. "initial": "2",
  12756. "appliesTo": "block containers that establish an inline formatting context",
  12757. "inherited": "yes",
  12758. "percentages": "n/a",
  12759. "computedValue": "specified integer",
  12760. "canonicalOrder": "per grammar",
  12761. "animationType": "by computed value type",
  12762. "styleDeclaration": [
  12763. "widows"
  12764. ],
  12765. "syntax": "<integer [1,∞]>",
  12766. "extended": []
  12767. }
  12768. ],
  12769. [
  12770. "width",
  12771. {
  12772. "name": "width",
  12773. "href": "https://drafts.csswg.org/css-sizing-3/#propdef-width",
  12774. "initial": "auto",
  12775. "appliesTo": "all elements except non-replaced inlines",
  12776. "inherited": "no",
  12777. "percentages": "relative to width/height of containing block",
  12778. "computedValue": "as specified, with <length-percentage> values computed",
  12779. "canonicalOrder": "per grammar",
  12780. "animationType": "by computed value type, recursing into fit-content()",
  12781. "logicalPropertyGroup": "size",
  12782. "styleDeclaration": [
  12783. "width"
  12784. ],
  12785. "syntax": "auto | <length-percentage [0,∞]> | min-content | max-content | fit-content(<length-percentage [0,∞]>) | <calc-size()> | <anchor-size()> | stretch | fit-content | contain",
  12786. "extended": [
  12787. "https://drafts.csswg.org/css-anchor-position-1/",
  12788. "https://drafts.csswg.org/css-sizing-4/"
  12789. ]
  12790. }
  12791. ],
  12792. [
  12793. "will-change",
  12794. {
  12795. "name": "will-change",
  12796. "href": "https://drafts.csswg.org/css-will-change-1/#propdef-will-change",
  12797. "initial": "auto",
  12798. "appliesTo": "all elements",
  12799. "inherited": "no",
  12800. "percentages": "n/a",
  12801. "computedValue": "specified value",
  12802. "canonicalOrder": "per grammar",
  12803. "animationType": "not animatable",
  12804. "styleDeclaration": [
  12805. "will-change",
  12806. "willChange"
  12807. ],
  12808. "syntax": "auto | <animateable-feature>#",
  12809. "extended": []
  12810. }
  12811. ],
  12812. [
  12813. "word-break",
  12814. {
  12815. "name": "word-break",
  12816. "href": "https://drafts.csswg.org/css-text-4/#propdef-word-break",
  12817. "initial": "normal",
  12818. "appliesTo": "text",
  12819. "inherited": "yes",
  12820. "percentages": "n/a",
  12821. "computedValue": "specified keyword",
  12822. "canonicalOrder": "n/a",
  12823. "animationType": "discrete",
  12824. "styleDeclaration": [
  12825. "word-break",
  12826. "wordBreak"
  12827. ],
  12828. "syntax": "normal | break-all | keep-all | manual | auto-phrase | break-word",
  12829. "extended": []
  12830. }
  12831. ],
  12832. [
  12833. "word-space-transform",
  12834. {
  12835. "name": "word-space-transform",
  12836. "href": "https://drafts.csswg.org/css-text-4/#propdef-word-space-transform",
  12837. "initial": "none",
  12838. "appliesTo": "text",
  12839. "inherited": "yes",
  12840. "percentages": "N/A",
  12841. "computedValue": "as specified",
  12842. "canonicalOrder": "per grammar",
  12843. "animationType": "discrete",
  12844. "styleDeclaration": [
  12845. "word-space-transform",
  12846. "wordSpaceTransform"
  12847. ],
  12848. "syntax": "none | [ space | ideographic-space ] && auto-phrase?",
  12849. "extended": []
  12850. }
  12851. ],
  12852. [
  12853. "word-spacing",
  12854. {
  12855. "name": "word-spacing",
  12856. "href": "https://drafts.csswg.org/css-text-4/#propdef-word-spacing",
  12857. "initial": "normal",
  12858. "appliesTo": "text",
  12859. "inherited": "yes",
  12860. "percentages": "relative to computed font-size, i.e. 1em",
  12861. "computedValue": "an absolute length and/or a percentage",
  12862. "canonicalOrder": "n/a",
  12863. "animationType": "by computed value type",
  12864. "styleDeclaration": [
  12865. "word-spacing",
  12866. "wordSpacing"
  12867. ],
  12868. "syntax": "normal | <length-percentage>",
  12869. "extended": []
  12870. }
  12871. ],
  12872. [
  12873. "word-wrap",
  12874. {
  12875. "name": "word-wrap",
  12876. "href": "https://drafts.csswg.org/css-text-4/#propdef-word-wrap",
  12877. "initial": "normal",
  12878. "appliesTo": "text",
  12879. "inherited": "yes",
  12880. "percentages": "n/a",
  12881. "computedValue": "specified keyword",
  12882. "canonicalOrder": "n/a",
  12883. "animationType": "discrete",
  12884. "styleDeclaration": [
  12885. "word-wrap",
  12886. "wordWrap"
  12887. ],
  12888. "syntax": "normal | break-word | anywhere",
  12889. "extended": []
  12890. }
  12891. ],
  12892. [
  12893. "wrap-after",
  12894. {
  12895. "name": "wrap-after",
  12896. "href": "https://drafts.csswg.org/css-text-4/#propdef-wrap-after",
  12897. "initial": "auto",
  12898. "appliesTo": "inline-level boxes and flex items",
  12899. "inherited": "no",
  12900. "percentages": "n/a",
  12901. "computedValue": "specified keyword",
  12902. "canonicalOrder": "per grammar",
  12903. "animationType": "discrete",
  12904. "styleDeclaration": [
  12905. "wrap-after",
  12906. "wrapAfter"
  12907. ],
  12908. "syntax": "auto | avoid | avoid-line | avoid-flex | line | flex",
  12909. "extended": []
  12910. }
  12911. ],
  12912. [
  12913. "wrap-before",
  12914. {
  12915. "name": "wrap-before",
  12916. "href": "https://drafts.csswg.org/css-text-4/#propdef-wrap-before",
  12917. "initial": "auto",
  12918. "appliesTo": "inline-level boxes and flex items",
  12919. "inherited": "no",
  12920. "percentages": "n/a",
  12921. "computedValue": "specified keyword",
  12922. "canonicalOrder": "per grammar",
  12923. "animationType": "discrete",
  12924. "styleDeclaration": [
  12925. "wrap-before",
  12926. "wrapBefore"
  12927. ],
  12928. "syntax": "auto | avoid | avoid-line | avoid-flex | line | flex",
  12929. "extended": []
  12930. }
  12931. ],
  12932. [
  12933. "wrap-flow",
  12934. {
  12935. "name": "wrap-flow",
  12936. "href": "https://drafts.csswg.org/css-exclusions-1/#propdef-wrap-flow",
  12937. "initial": "auto",
  12938. "appliesTo": "block-level elements.",
  12939. "inherited": "no",
  12940. "percentages": "N/A",
  12941. "computedValue": "as specified except for element’s whose float computed value is not none, in which case the computed value is auto.",
  12942. "canonicalOrder": "per grammar",
  12943. "animationType": "discrete",
  12944. "styleDeclaration": [
  12945. "wrap-flow",
  12946. "wrapFlow"
  12947. ],
  12948. "syntax": "auto | both | start | end | minimum | maximum | clear",
  12949. "extended": []
  12950. }
  12951. ],
  12952. [
  12953. "wrap-inside",
  12954. {
  12955. "name": "wrap-inside",
  12956. "href": "https://drafts.csswg.org/css-text-4/#propdef-wrap-inside",
  12957. "initial": "auto",
  12958. "appliesTo": "inline boxes",
  12959. "inherited": "no",
  12960. "percentages": "n/a",
  12961. "computedValue": "specified keyword",
  12962. "canonicalOrder": "per grammar",
  12963. "animationType": "discrete",
  12964. "styleDeclaration": [
  12965. "wrap-inside",
  12966. "wrapInside"
  12967. ],
  12968. "syntax": "auto | avoid",
  12969. "extended": []
  12970. }
  12971. ],
  12972. [
  12973. "wrap-through",
  12974. {
  12975. "name": "wrap-through",
  12976. "href": "https://drafts.csswg.org/css-exclusions-1/#propdef-wrap-through",
  12977. "initial": "wrap",
  12978. "appliesTo": "block-level elements",
  12979. "inherited": "no",
  12980. "percentages": "N/A",
  12981. "computedValue": "as specified",
  12982. "canonicalOrder": "per grammar",
  12983. "animationType": "discrete",
  12984. "styleDeclaration": [
  12985. "wrap-through",
  12986. "wrapThrough"
  12987. ],
  12988. "syntax": "wrap | none",
  12989. "extended": []
  12990. }
  12991. ],
  12992. [
  12993. "writing-mode",
  12994. {
  12995. "name": "writing-mode",
  12996. "href": "https://drafts.csswg.org/css-writing-modes-4/#propdef-writing-mode",
  12997. "initial": "horizontal-tb",
  12998. "appliesTo": "All elements except table row groups, table column groups, table rows, table columns, ruby base containers, ruby annotation containers",
  12999. "inherited": "yes",
  13000. "percentages": "n/a",
  13001. "computedValue": "specified value",
  13002. "canonicalOrder": "n/a",
  13003. "animationType": "not animatable",
  13004. "styleDeclaration": [
  13005. "writing-mode",
  13006. "writingMode"
  13007. ],
  13008. "syntax": "horizontal-tb | vertical-rl | vertical-lr | sideways-rl | sideways-lr",
  13009. "extended": []
  13010. }
  13011. ],
  13012. [
  13013. "z-index",
  13014. {
  13015. "name": "z-index",
  13016. "href": "https://drafts.csswg.org/css2/#propdef-z-index",
  13017. "initial": "auto",
  13018. "appliesTo": "positioned elements",
  13019. "inherited": "no",
  13020. "percentages": "N/A",
  13021. "computedValue": "as specified",
  13022. "canonicalOrder": "per grammar",
  13023. "media": "visual",
  13024. "styleDeclaration": [
  13025. "z-index",
  13026. "zIndex"
  13027. ],
  13028. "syntax": "auto | <integer> | inherit",
  13029. "extended": []
  13030. }
  13031. ]
  13032. ]);