CINXE.COM
CSS Working Group Editor Drafts
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html lang='en'><head><meta content='text/html; charset=utf-8' http-equiv='Content-Type'><title>CSS Working Group Editor Drafts</title><link href='/local/img/cssicon.png' rel='icon' type='image/png'><link href='/core/stylesheets/base.css' rel='stylesheet' type='text/css'><link href='/core/stylesheets/system.css' rel='stylesheet' type='text/css'><link href='/stylesheets/drafts.css' rel='stylesheet' type='text/css'><link href='/stylesheets/homepage.css' rel='stylesheet' type='text/css'><script nonce='yV+C4fZmuiwruypx0h6uV9bl51tLSJXaxRdxL7mb258=' type='text/javascript'><!-- var gCookieDomain=".drafts.csswg.org";var gCookiePath="\/";var gCookiePrefix="drafts_";var gUserId=false;if(!Array.indexOf){Array.prototype.indexOf=function(obj){for(var index=0;index<this.length;index++){if(this[index]==obj){return index;}}return-1;}}try{if(1!=Node.ELEMENT_NODE){throw true;}}catch(exc){var Node={ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3};}var system={mAPIXHR:null,mAPITimer:null,mAPIQueue:[],commonPrefix:function(string1,string2){var prefix='';var length=((string1.length<string2.length)?string1.length:string2.length);var index=-1;while((++index<length)&(string1[index]==string2[index])){prefix+=string1[index];}return prefix;},getCookie:function(name){var cookies=document.cookie.split(';');name+='=';var prefixedName=gCookiePrefix+name;for(var index=0;index<cookies.length;index++){cookie=cookies[index].trim();if(prefixedName==cookie.substring(0,prefixedName.length)){return unescape(cookie.substring(prefixedName.length));}if(name==cookie.substring(0,name.length)){return unescape(cookie.substring(name.length));}}return null;},setCookie:function(name,value){if(null==value){var expDate=new Date();expDate.setDate(expDate.getDate()-1);document.cookie=gCookiePrefix+name+'=; expires='+expDate.toGMTString()+'; '+'domain='+gCookieDomain+'; path='+gCookiePath;}else{document.cookie=gCookiePrefix+name+'='+escape(value)+'; expires=0; '+'domain='+gCookieDomain+'; path='+gCookiePath;}},hasClass:function(element,className){if(element&&('className'in element)){var classes=element.className.split(' ');if(-1<classes.indexOf(className)){return true;}}return false;},addClass:function(element,className){if(element){var classes=(('className'in element)?element.className.split(' '):new Array());if(-1==classes.indexOf(className)){classes.push(className);element.className=classes.join(' ');}}},removeClass:function(element,className){if(element){var classes=(('className'in element)?element.className.split(' '):new Array());var index;while(-1<(index=classes.indexOf(className))){classes.splice(index,1);}element.className=classes.join(' ');}},findChildWithClass:function(element,className){if(element){var children=element.children;if(children){for(var index=0;index<children.length;index++){var child=children[index];if((child.nodeType==Node.ELEMENT_NODE)&&this.hasClass(child,className)){return child;}}}}return null;},getFirstElementChild:function(element){if(element){var children=element.children;for(var index=0;index<children.length;index++){var child=children[index];if(child.nodeType==Node.ELEMENT_NODE){return child;}}}return null;},iterateElementChildren:function(element,callback){if(element){var children=Array();for(var index=0;index<element.children.length;index++){var child=element.children[index];if(child.nodeType==Node.ELEMENT_NODE){children.push(child);}}for(var index=0;index<children.length;index++){var child=children[index];var result=callback(child,index);if(result){return result;}}}return false;},isLoggedIn:function(){var login=document.getElementById('login');return(login&&this.hasClass(login,'loggedin'));},toggleLoginMenu:function(){var login=document.getElementById('login');if(login){if(this.hasClass(login,'open')){this.removeClass(login,'open');}else{this.addClass(login,'open');}}},updatePageURI:function(uri){var login=document.getElementById('login');if(login){var a=system.createElement('a',{'href':uri});uri=a.pathname;system.iterateElementChildren(login,function(div,index){system.iterateElementChildren(div,function(item,index){if(item.hasAttribute('href')){var href=item.getAttribute('href');var index=href.indexOf('/return/');if(0<=index){var prefix=system.commonPrefix(uri,item.pathname);item.setAttribute('href',href.substring(0,index)+'/return/'+uri.substring(prefix.length));}}});});}},createProgressIcon:function(){var progress=this.createElement('span',{'class':'progress p1'});progress.setAttribute('data-timer',setInterval(function(){var state=progress.className.slice(-1);state=(state-0+1)%8;progress.className='progress p'+state;},125));return progress;},removeProgressIcon:function(progress){if(progress){clearInterval(progress.getAttribute('data-timer')-0);if(progress.parentNode){progress.parentNode.removeChild(progress);}}},addLoadEvent:function(onLoad){try{var oldOnLoad=window.onload;if('function'!=typeof(window.onload)){window.onload=onLoad;}else{window.onload=function(){if(oldOnLoad){oldOnLoad();}onLoad();}}}catch(err){}},createElement:function(tagName,attrs,textContent){var element=document.createElement(tagName);if(attrs){for(attr in attrs){if(attrs.hasOwnProperty(attr)){if('id'==attr){element.id=attrs.id;}else if('className'==attr){element.className=attrs.className;}else if(attrs[attr]){element.setAttribute(attr,attrs[attr]);}}}}if(textContent){element.textContent=textContent;}return element;},emptyElement:function(element){if(element){while(element.lastChild){element.removeChild(element.lastChild);}}},addFormData:function(form,name,value){if(form){var hidden=this.createElement('input',{'type':'hidden','name':name,'value':value});form.appendChild(hidden);}},addUserHyperLink:function(parent,user){var userName=(user&&user.name ?((user.name.toLowerCase()==user.full_name.toLowerCase())?user.full_name:user.name):'Anonymous User');var title=(user&&user.full_name&&user.name&&(user.full_name.toLowerCase()!=user.name.toLowerCase())?user.full_name:'');var email=(user&&user.email&&user.display_email ?user.email:'');var uri=(user&&user.uri ?user.uri:'');if(email){parent.appendChild(this.createElement('a',{'href':'mailto:'+email,'title':title},userName));}else if(uri){parent.appendChild(this.createElement('a',{'href':uri,'title':title},userName));}else{parent.appendChild(this.createElement('span',{'title':title},userName));}},_processAPIQueue:function(){var call=this.mAPIQueue.shift();if(call){if(!this.mAPIXHR){this.mAPIXHR=new XMLHttpRequest();}this.mAPIXHR.onreadystatechange=function(){if(4==system.mAPIXHR.readyState){if(call.callback){var response=false;try{if('json'==call.type){response=JSON.parse(system.mAPIXHR.responseText);}else if('xml'==call.type){response=system.mAPIXHR.responseXML.documentElement}}catch(err){}try{call.callback(system.mAPIXHR.status,response);}catch(err){if(call.progress){system.removeProgressIcon(call.progress);}throw err;}}if(call.progress){system.removeProgressIcon(call.progress);}this.mAPITimer=setTimeout(function(){system._processAPIQueue()},10);}};try{this.mAPIXHR.open(call.method,call.uri,true);if(call.callback){this.mAPIXHR.setRequestHeader('Accept','application/json');}if('POST'==call.method){this.mAPIXHR.setRequestHeader('Content-type','application/x-www-form-urlencoded');this.mAPIXHR.setRequestHeader('Content-length',call.data.length);}if('xml'==call.type){this.mAPIXHR.responseType='document';}else{this.mAPIXHR.responseType='';}this.mAPIXHR.send(call.data);}catch(err){if(call.progress){system.removeProgressIcon(call.progress);}this.mAPITimer=setTimeout(function(){system._processAPIQueue()},10);throw err;}}else{this.mAPITimer=null;}},callAPI:function(method,uri,data,type,callback,progressTarget,priority){var progress=null;if(progressTarget){progress=this.createProgressIcon();progressTarget.parentNode.insertBefore(progress,progressTarget.nextSibling);}var call={method:method,uri:uri,type:type,data:data,callback:callback,progress:progress};if(priority){this.mAPIQueue.unshift(call);}else{this.mAPIQueue.push(call);}if(null===this.mAPITimer){this.mAPITimer=setTimeout(function(){system._processAPIQueue()},10);}},encodeParams:function(params,arrayName){var paramString='';for(param in params){if(params.hasOwnProperty(param)){if(paramString){paramString+='&';}var name=param;if(arrayName){name=arrayName+'['+param+']';}if(Array.isArray(params[param])){for(var index=0;index<params[param].length;index++){paramString+=name+'[]='+params[param][index];}}else if('object'==typeof(params[param])){paramString+=this.encodeParams(params[param],param);}else if('boolean'==typeof(params[param])){paramString+=name+'='+(params[param]+0);}else{paramString+=name+'='+encodeURIComponent(params[param]);}}}return paramString;},getXML:function(uri,params,callback,progressTarget,priority){if(null==params){params={};}var paramString=this.encodeParams(params);this.callAPI('GET',uri+'?'+paramString,null,'xml',callback,progressTarget,priority);},callAPIGet:function(uri,params,callback,progressTarget,priority){if(null==params){params={};}var loginKey=this.getCookie('loginkey');if(loginKey){params.loginkey=loginKey;}var paramString=this.encodeParams(params);this.callAPI('GET',uri+'?'+paramString,null,'json',callback,progressTarget,priority);},callAPIPost:function(uri,params,callback,progressTarget,priority){if(null==params){params={};}var loginKey=this.getCookie('loginkey');if(loginKey){params.loginkey=loginKey;}var data=this.encodeParams(params);this.callAPI('POST',uri,data,'json',callback,progressTarget,priority);},abortAPICall:function(){if(this.mAPIXHR){if((4!=this.mAPIXHR.readyState)&&(0!=this.mAPIXHR.readyState)){this.mAPIXHR.abort();}}},setMenuAlert:function(menuId,state){var menuLink=document.getElementById(menuId);if(menuLink){if(state){if(!this.hasClass(menuLink,'alert')){var icon=this.createElement('span',{'class':'icon alert','style':'top: -14px ! important'});menuLink.appendChild(icon);this.addClass(menuLink,'alert');setTimeout(function(){icon.setAttribute('style','top: '+(menuLink.offsetTop+3)+'px');},100);}}else{if(this.hasClass(menuLink,'alert')){var icon=menuLink.lastChild;icon.setAttribute('style','top: -14px ! important');this.removeClass(menuLink,'alert');setTimeout(function(){menuLink.removeChild(icon);},500);}}}}}; // --></script><script nonce='yV+C4fZmuiwruypx0h6uV9bl51tLSJXaxRdxL7mb258=' type='text/javascript'><!-- var gUserRole=null;var gSystemAPIURI="\/api\/system\/";Stream=function(uri,params,callback){this.xhr=new XMLHttpRequest();this.callback=callback;this.persist=false;if(!params){params={};}var loginKey=system.getCookie('loginkey');if(loginKey){params['loginkey']=loginKey;}params['stream']=++this.gStreamId;this.uri=(params ?uri+'?'+system.encodeParams(params):uri);var stream=this;this.xhr.onreadystatechange=function(){if((200==stream.xhr.status)&&((3==stream.xhr.readyState)||(4==stream.xhr.readyState))){var message=stream.xhr.responseText.substring(stream.processed);if(-1!=message.indexOf("\uEE00\uEEFF\uEE00")){var messages=message.split("\uEE00\uEEFF\uEE00");for(var index=0;index<(messages.length-1);index++){message=messages[index];stream.processed+=(message.length+3);try{response=JSON.parse(message.trim());}catch(err){console.log("stream parse error: "+message.trim());console.log(err);continue;}stream.callback(response.message,response.data);}}if(4==stream.xhr.readyState){if(stream.persist&&(!stream.closed)){setTimeout(function(){if(!stream.closed){stream.connect();}},10);}stream.closed=true;}}};this.connect();return this;};Stream.prototype={gStreamId:Math.floor(Math.random()*0xFFFFFFFF),connect:function(){this.processed=0;this.closed=false;this.xhr.open('GET',this.uri,true);this.xhr.setRequestHeader('Accept','application/json');this.xhr.send();},close:function(){this.closed=true;if((4!=this.xhr.readyState)&&(0!=this.xhr.readyState)){this.xhr.abort();}},setTimeout:function(callback,timeoutMS){this.xhr.timeout=timeoutMS;var stream=this;this.xhr.ontimeout=function(){stream.closed=true;callback(stream);};},}; // --></script><script nonce='yV+C4fZmuiwruypx0h6uV9bl51tLSJXaxRdxL7mb258=' type='text/javascript'><!-- // --></script><script nonce='yV+C4fZmuiwruypx0h6uV9bl51tLSJXaxRdxL7mb258=' type='text/javascript'><!-- var gDraftAPIURI="https:\/\/drafts.csswg.org\/api\/drafts\/";var gRepo="csswg";var gDate=false;var gBranch=null;var gHead=null;var gUpdateStream=null;function updateTBody(tbody,data){return system.iterateElementChildren(tbody,function(tr,rowIndex){if(tr.getAttribute('data-path')==data.source_path){var dateTD=tr.firstElementChild.nextElementSibling;dateTD.textContent=data.revised_changeset.date_user+' '+data.revised_changeset.time_user;var userTD=dateTD.nextElementSibling;system.emptyElement(userTD);system.addUserHyperLink(userTD,data.revised_changeset.user);var icon=tr.lastElementChild.lastElementChild;icon.className=data.type+' '+data.status;return true;}});}function updateTable(table,data){return system.iterateElementChildren(table,function(tbody,tbodyIndex){if('TBODY'==tbody.tagName){return updateTBody(tbody,data);}});}function updateDraft(message,data){var specTable=document.getElementById('spec_table');var docTable=document.getElementById('doc_table');if(!(updateTable(specTable,data)||updateTable(docTable,data))){if(data.source_path.split('/').length<=2){window.location.reload();}}}function startStream(){gUpdateStream=new Stream(gDraftAPIURI,{'repo':gRepo,'date':gDate,'branch':gBranch,'head':gHead},updateDraft);gUpdateStream.persist=true;}function setupPage(){startStream();}system.addLoadEvent(setupPage); // --></script></head><body><div class='header'><div class='logo'><a href='http://www.w3.org/' rel='home'><img alt='W3C' src='/core/img/logo-w3c-screen-sm.png'></a></div><div class='login' id='login'><div><a href='/login/'>Login</a></div></div><p class='nav'><a>Home</a></p><h1 id='title'>CSS Working Group Editor Drafts</h1></div><div class='body'><table class='list tbody' id='spec_table'><thead><tr><th>Specification</th><th>Last Update</th><th>By</th><th></th></tr></thead><tbody><tr class='' data-path='css-align-3/Overview.bs'><td><a href='/css-align-3/'>CSS Box Alignment 3</a></td><td>2024-08-30 15:49:05 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-align-3/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-align-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-anchor-position-1/Overview.bs'><td><a href='/css-anchor-position-1/'>CSS Anchor Positioning 1</a></td><td>2024-10-29 11:15:32 PDT</td><td><span title='Keith Cirkel'>keith_cirkel</span></td><td><a class='history' href='/history/css-anchor-position-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-anchor-position-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-animations</th></tr><tr class='current' data-path='css-animations-1/Overview.bs'><td><a href='/css-animations-1/'>CSS Animations 1</a><span>(Current Work)</span></td><td>2023-12-08 04:31:36 PST</td><td><span title='Emilio Cobos Álvarez'>emilio</span></td><td><a class='history' href='/history/css-animations-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-animations-2/Overview.bs'><td><a href='/css-animations-2/'>CSS Animations 2</a></td><td>2024-11-10 22:22:23 PST</td><td><span title='Brian Birtles (via Travis)'>brian_birtles__via_travis_</span></td><td><a class='history' href='/history/css-animations-2/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-animations-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-backgrounds</th></tr><tr class='current' data-path='css-backgrounds-3/Overview.bs'><td><a href='/css-backgrounds-3/'>CSS Backgrounds 3</a><span>(Current Work)</span></td><td>2024-09-16 15:24:28 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='issues' href='/css-backgrounds-3/issues-cr-2017'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-backgrounds-3/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-backgrounds-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-backgrounds-4/Overview.bs'><td><a href='/css-backgrounds-4/'>CSS Backgrounds 4</a></td><td>2024-09-16 07:26:12 PDT</td><td><span title='Francois Daoust'>francois_daoust</span></td><td><a class='history' href='/history/css-backgrounds-4/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-backgrounds-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-borders-4/Overview.bs'><td><a href='/css-borders-4/'>CSS Borders 4</a></td><td>2024-10-02 12:51:04 PDT</td><td><span title='Noam Rosenthal'>noamr</span></td><td><a class='history' href='/history/css-borders-4/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-borders-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-box</th></tr><tr class='current' data-path='css-box-3/Overview.bs'><td><a href='/css-box-3/'>CSS Box 3</a><span>(Current Work)</span></td><td>2024-04-04 12:15:50 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-box-3/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-box-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-box-4/Overview.bs'><td><a href='/css-box-4/'>CSS Box 4</a></td><td>2024-08-03 20:08:06 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-box-4/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-box-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-break</th></tr><tr class='current' data-path='css-break-3/Overview.bs'><td><a href='/css-break-3/'>CSS Fragmentation 3</a><span>(Current Work)</span></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='issues' href='/css-break-3/issues-cr-2016'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-break-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-break-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-break-4/Overview.bs'><td><a href='/css-break-4/'>CSS Fragmentation 4</a></td><td>2024-03-11 12:53:48 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-break-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-break-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-cascade</th></tr><tr class='' data-path='css-cascade-3/Overview.bs'><td><a href='/css-cascade-3/'>CSS Cascading 3</a></td><td>2024-01-30 08:39:12 PST</td><td><span title='Chris Harrelson'>chris_harrelson</span></td><td><a class='issues' href='/css-cascade-3/issues-cr-2016'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-cascade-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-cascade-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-cascade-4/Overview.bs'><td><a href='/css-cascade-4/'>CSS Cascading 4</a><span>(Current Work)</span></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='issues' href='/css-cascade-4/issues-cr-2016'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-cascade-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-cascade-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-cascade-5/Overview.bs'><td><a href='/css-cascade-5/'>CSS Cascading 5</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-cascade-5/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-cascade-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-cascade-6/Overview.bs'><td><a href='/css-cascade-6/'>CSS Cascading 6</a></td><td>2024-11-07 16:33:48 PST</td><td><span>andruud</span></td><td><a class='history' href='/history/css-cascade-6/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-cascade-6/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-color</th></tr><tr class='' data-path='css-color-3/Overview.html'><td><a href='/css-color-3/'>CSS Color 3</a></td><td>2024-03-04 22:27:21 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-color-3/issues-lc-2008'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-color-3/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-color-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-color-4/Overview.bs'><td><a href='/css-color-4/'>CSS Color 4</a><span>(Current Work)</span></td><td>2024-11-20 09:19:56 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-color-4/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-color-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-color-5/Overview.bs'><td><a href='/css-color-5/'>CSS Color 5</a></td><td>2024-11-15 05:51:36 PST</td><td><span>Guillaume</span></td><td><a class='history' href='/history/css-color-5/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-color-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-color-6/Overview.bs'><td><a href='/css-color-6/'>CSS Color 6</a></td><td>2024-09-15 06:54:48 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-color-6/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-color-6/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-color-adjust-1/Overview.bs'><td><a href='/css-color-adjust-1/'>CSS Color Adjust 1</a></td><td>2024-11-20 10:53:42 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-color-adjust-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-color-adjust-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-color-hdr-1/Overview.bs'><td><a href='/css-color-hdr-1/'>CSS Color HDR 1</a></td><td>2024-11-20 15:48:45 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-color-hdr-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-color-hdr-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-conditional</th></tr><tr class='' data-path='css-conditional-3/Overview.bs'><td><a href='/css-conditional-3/'>CSS Conditional 3</a></td><td>2024-10-15 12:47:52 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-conditional-3/issues-cr-2020'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-conditional-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-conditional-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-conditional-4/Overview.bs'><td><a href='/css-conditional-4/'>CSS Conditional 4</a></td><td>2024-03-19 14:18:22 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-conditional-4/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-conditional-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-conditional-5/Overview.bs'><td><a href='/css-conditional-5/'>CSS Conditional 5</a><span>(Current Work)</span></td><td>2024-11-14 03:15:06 PST</td><td><span title='Rune Lillesveen'>rune</span></td><td><a class='history' href='/history/css-conditional-5/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-conditional-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-conditional-values-1/Overview.bs'><td><a href='/css-conditional-values-1/'>CSS Conditional Values 1</a></td><td>2023-02-21 10:38:59 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-conditional-values-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-conditional-values-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-contain</th></tr><tr class='' data-path='css-contain-1/Overview.bs'><td><a href='/css-contain-1/'>CSS Containment 1</a></td><td>2024-06-28 01:18:26 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='issues' href='/css-contain-1/issues-2022-rec'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-contain-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-contain-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-contain-2/Overview.bs'><td><a href='/css-contain-2/'>CSS Containment 2</a><span>(Current Work)</span></td><td>2024-06-15 10:20:17 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='issues' href='/css-contain-2/issues-2019-10-fpwd'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-contain-2/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-contain-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-contain-3/Overview.bs'><td><a href='/css-contain-3/'>CSS Containment 3</a></td><td>2024-06-19 22:24:05 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='history' href='/history/css-contain-3/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-contain-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-content-3/Overview.bs'><td><a href='/css-content-3/'>CSS Generated Content 3</a></td><td>2024-05-17 10:45:40 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-content-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-content-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-counter-styles-3/Overview.bs'><td><a href='/css-counter-styles-3/'>CSS Counter Styles 3</a></td><td>2023-12-18 12:43:06 PST</td><td><span>fantasai</span></td><td><a class='issues' href='/css-counter-styles-3/issues-cr-2017'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-counter-styles-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-counter-styles-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-display</th></tr><tr class='' data-path='css-display-3/Overview.bs'><td><a href='/css-display-3/'>CSS Display 3</a></td><td>2023-11-22 12:27:09 PST</td><td><span>fantasai</span></td><td><a class='issues' href='/css-display-3/issues-cr-2020'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-display-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-display-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-display-4/Overview.bs'><td><a href='/css-display-4/'>CSS Display 4</a><span>(Current Work)</span></td><td>2024-11-13 21:10:18 PST</td><td><a href='http://rachelandrew.co.uk'>rachelandrew</a></td><td><a class='history' href='/history/css-display-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-display-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-easing</th></tr><tr class='' data-path='css-easing-1/Overview.bs'><td><a href='/css-easing-1/'>CSS Easing 1</a></td><td>2024-08-28 08:42:11 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-easing-1/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-easing-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-easing-2/Overview.bs'><td><a href='/css-easing-2/'>CSS Easing 2</a><span>(Current Work)</span></td><td>2024-09-17 12:36:15 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-easing-2/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-easing-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-egg-1/Overview.bs'><td><a href='/css-egg-1/'>CSS Expressive Generalizations and Gadgetry 1</a></td><td>2023-02-21 10:38:59 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-egg-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-egg-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-env-1/Overview.bs'><td><a href='/css-env-1/'>CSS Environment Variables 1</a></td><td>2024-08-30 15:41:35 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-env-1/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-env-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-exclusions-1/Overview.bs'><td><a href='/css-exclusions-1/'>CSS Exclusions 1</a></td><td>2024-07-24 13:24:31 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-exclusions-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-exclusions-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-extensions-1/Overview.bs'><td><a href='/css-extensions-1/'>CSS Extensions 1</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-extensions-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-extensions-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-flexbox-1/Overview.bs'><td><a href='/css-flexbox-1/'>CSS Flexbox 1</a></td><td>2024-08-09 15:24:19 PDT</td><td><span>fantasai</span></td><td><a class='issues' href='/css-flexbox-1/issues-cr-2018'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-flexbox-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-flexbox-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-font-loading-3/Overview.bs'><td><a href='/css-font-loading-3/'>CSS Font Loading 3</a></td><td>2024-05-11 15:05:52 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-font-loading-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-font-loading-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-fonts</th></tr><tr class='' data-path='css-fonts-3/Overview.html'><td><a href='/css-fonts-3/'>CSS Fonts 3</a></td><td>2024-09-08 04:48:21 PDT</td><td><span>Guillaume</span></td><td><a class='history' href='/history/css-fonts-3/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-fonts-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-fonts-4/Overview.bs'><td><a href='/css-fonts-4/'>CSS Fonts 4</a><span>(Current Work)</span></td><td>2024-11-20 13:09:11 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-fonts-4/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-fonts-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-fonts-5/Overview.bs'><td><a href='/css-fonts-5/'>CSS Fonts 5</a></td><td>2024-07-11 10:49:58 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-fonts-5/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-fonts-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-forms-1/Overview.bs'><td><a href='/css-forms-1/'>CSS Form Styling 1</a></td><td>2024-10-14 22:16:09 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-forms-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-forms-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-gcpm</th></tr><tr class='current' data-path='css-gcpm-3/Overview.bs'><td><a href='/css-gcpm-3/'>CSS GCPM 3</a><span>(Current Work)</span></td><td>2024-05-04 10:04:59 PDT</td><td><span title>chrishtr</span></td><td><a class='history' href='/history/css-gcpm-3/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-gcpm-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-gcpm-4/Overview.bs'><td><a href='/css-gcpm-4/'>CSS GCPM 4</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-gcpm-4/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-gcpm-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-grid</th></tr><tr class='' data-path='css-grid-1/Overview.bs'><td><a href='/css-grid-1/'>CSS Grid Layout 1</a></td><td>2023-11-03 13:41:58 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='issues' href='/css-grid-1/issues-cr-2017'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-grid-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-grid-2/Overview.bs'><td><a href='/css-grid-2/'>CSS Grid Layout 2</a><span>(Current Work)</span></td><td>2024-10-03 14:02:16 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-grid-2/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-grid-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-grid-3/Overview.bs'><td><a href='/css-grid-3/'>CSS Grid Layout 3</a></td><td>2024-10-03 14:34:45 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-grid-3/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-grid-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-highlight-api-1/Overview.bs'><td><a href='/css-highlight-api-1/'>CSS Highlight API 1</a></td><td>2024-10-14 21:02:45 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-highlight-api-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-highlight-api-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-images</th></tr><tr class='current' data-path='css-images-3/Overview.bs'><td><a href='/css-images-3/'>CSS Images 3</a><span>(Current Work)</span></td><td>2024-11-08 14:25:17 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-images-3/issues-lc-2012'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-images-3/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-images-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-images-4/Overview.bs'><td><a href='/css-images-4/'>CSS Images 4</a></td><td>2024-09-03 04:52:57 PDT</td><td><span>Guillaume</span></td><td><a class='history' href='/history/css-images-4/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-images-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-images-5/Overview.bs'><td><a href='/css-images-5/'>CSS Images 5</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-images-5/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-images-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-inline-3/Overview.bs'><td><a href='/css-inline-3/'>CSS Inline Layout 3</a></td><td>2024-11-12 13:19:42 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-inline-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-inline-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-line-grid-1/Overview.bs'><td><a href='/css-line-grid-1/'>CSS Line Grid 1</a></td><td>2024-07-26 03:25:50 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='history' href='/history/css-line-grid-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-line-grid-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-link-params-1/Overview.bs'><td><a href='/css-link-params-1/'>CSS Linked Parameters 1</a></td><td>2023-08-07 09:00:10 PDT</td><td><span title='Nick Schonning'>nick_schonning</span></td><td><a class='history' href='/history/css-link-params-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-link-params-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-lists-3/Overview.bs'><td><a href='/css-lists-3/'>CSS Lists 3</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-lists-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-lists-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-logical-1/Overview.bs'><td><a href='/css-logical-1/'>CSS Logical Properties 1</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-logical-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-logical-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-mobile/Overview.bs'><td><a href='/css-mobile/'>CSS Mobile Profile 2.0</a></td><td>2021-11-15 13:13:56 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-mobile/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-mobile/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-multicol</th></tr><tr class='current' data-path='css-multicol-1/Overview.bs'><td><a href='/css-multicol-1/'>CSS Multicol 1</a><span>(Current Work)</span></td><td>2024-11-22 10:25:46 PST</td><td><span title='Kevin Babbitt'>kbabbitt</span></td><td><a class='issues' href='/css-multicol-1/issues-2011'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-multicol-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-multicol-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-multicol-2/Overview.bs'><td><a href='/css-multicol-2/'>CSS Multicol 2</a></td><td>2024-11-12 12:04:53 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-multicol-2/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-multicol-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-namespaces-3/Overview.bs'><td><a href='/css-namespaces-3/'>CSS Namespaces 3</a></td><td>2024-10-25 11:02:15 PDT</td><td><span>Guillaume</span></td><td><a class='issues' href='/css-namespaces-3/issues-3'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-namespaces-3/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-namespaces-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-nav-1/Overview.bs'><td><a href='/css-nav-1/'>CSS Spatial Navigation 1</a></td><td>2024-07-29 07:53:45 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='readme' href='/css-nav-1/explainer'><img alt src='/img/readme.svg'></a><a class='history' href='/history/css-nav-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-nav-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-nesting-1/Overview.bs'><td><a href='/css-nesting-1/'>CSS Nesting 1</a></td><td>2024-11-06 08:59:41 PST</td><td><span>andruud</span></td><td><a class='history' href='/history/css-nesting-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-nesting-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-overflow</th></tr><tr class='current' data-path='css-overflow-3/Overview.bs'><td><a href='/css-overflow-3/'>CSS Overflow 3</a><span>(Current Work)</span></td><td>2024-06-21 11:50:03 PDT</td><td><span>DavMila</span></td><td><a class='history' href='/history/css-overflow-3/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-overflow-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-overflow-4/Overview.bs'><td><a href='/css-overflow-4/'>CSS Overflow 4</a></td><td>2024-11-03 23:41:09 PST</td><td><span>Guillaume</span></td><td><a class='history' href='/history/css-overflow-4/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-overflow-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-overscroll-1/Overview.bs'><td><a href='/css-overscroll-1/'>CSS Overscroll Behavior 1</a></td><td>2023-03-03 12:37:39 PST</td><td><span>fantasai</span></td><td><a class='readme' href='/css-overscroll-1/README'><img alt src='/img/readme.svg'></a><a class='history' href='/history/css-overscroll-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-overscroll-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-page</th></tr><tr class='current' data-path='css-page-3/Overview.bs'><td><a href='/css-page-3/'>CSS Paged Media 3</a><span>(Current Work)</span></td><td>2023-12-05 12:32:18 PST</td><td><span title='Sebastian Zartner'>SebastianZ</span></td><td><a class='history' href='/history/css-page-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-page-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-page-4/Overview.html'><td><a href='/css-page-4/'>CSS Paged Media 4</a></td><td>2023-05-12 10:45:23 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-page-4/'><img alt src='/img/history.svg'></a><a class='bikeshed committed' href='/bikeshed/css-page-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-page-floats-3/Overview.bs'><td><a href='/css-page-floats-3/'>CSS Page Floats 3</a></td><td>2024-11-03 23:41:09 PST</td><td><span>Guillaume</span></td><td><a class='history' href='/history/css-page-floats-3/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-page-floats-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-page-template-1/Overview.html'><td><a href='/css-page-template-1/'>CSS Pagination Templates 1</a></td><td>2021-02-21 23:26:51 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-page-template-1/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-page-template-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-position</th></tr><tr class='current' data-path='css-position-3/Overview.bs'><td><a href='/css-position-3/'>CSS Positioned Layout 3</a><span>(Current Work)</span></td><td>2024-11-18 19:36:11 PST</td><td><span title='Tim Nguyen'>ntim</span></td><td><a class='history' href='/history/css-position-3/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-position-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-position-4/Overview.bs'><td><a href='/css-position-4/'>CSS Positioned Layout 4</a></td><td>2024-11-19 14:01:38 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td><a class='history' href='/history/css-position-4/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-position-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-preslev-1/Overview.html'><td><a href='/css-preslev-1/'>CSS Presentation Levels 1</a></td><td>2018-07-05 19:50:12 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='history' href='/history/css-preslev-1/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-preslev-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-print/Overview.bs'><td><a href='/css-print/'>CSS Print Profile</a></td><td>2023-12-18 12:43:06 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-print/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-print/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-pseudo-4/Overview.bs'><td><a href='/css-pseudo-4/'>CSS Pseudo-Elements 4</a></td><td>2024-11-12 16:27:13 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-pseudo-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-pseudo-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-regions-1/Overview.bs'><td><a href='/css-regions-1/'>CSS Regions 1</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-regions-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-regions-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-rhythm-1/Overview.bs'><td><a href='/css-rhythm-1/'>CSS Rhythmic Sizing 1</a></td><td>2024-11-13 12:29:38 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-rhythm-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-rhythm-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-round-display-1/Overview.bs'><td><a href='/css-round-display-1/'>CSS Round Display 1</a></td><td>2024-08-01 03:41:15 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-round-display-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-round-display-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-ruby-1/Overview.bs'><td><a href='/css-ruby-1/'>CSS Ruby 1</a></td><td>2024-07-15 02:01:21 PDT</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td><a class='issues' href='/css-ruby-1/issues-wd-2020'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-ruby-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-ruby-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-scoping-1/Overview.bs'><td><a href='/css-scoping-1/'>CSS Scoping 1</a></td><td>2024-09-27 14:30:01 PDT</td><td><a href='http://lea.verou.me/'>lea</a></td><td><a class='history' href='/history/css-scoping-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-scoping-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-scroll-anchoring-1/Overview.bs'><td><a href='/css-scroll-anchoring-1/'>CSS Scroll Anchoring 1</a></td><td>2020-12-22 01:38:32 PST</td><td><span title='Fran?ois Daoust'>fran_ois_daoust</span></td><td><a class='history' href='/history/css-scroll-anchoring-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-scroll-anchoring-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-scroll-snap</th></tr><tr class='current' data-path='css-scroll-snap-1/Overview.bs'><td><a href='/css-scroll-snap-1/'>CSS Scroll Snap 1</a><span>(Current Work)</span></td><td>2024-04-11 16:11:17 PDT</td><td><span title='Rob Flack'>flackr</span></td><td><a class='issues' href='/css-scroll-snap-1/issues-by-issue'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-scroll-snap-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-scroll-snap-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-scroll-snap-2/Overview.bs'><td><a href='/css-scroll-snap-2/'>CSS Scroll Snap 2</a></td><td>2024-11-07 07:33:36 PST</td><td><span title='Keith Cirkel'>keith_cirkel</span></td><td><a class='history' href='/history/css-scroll-snap-2/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-scroll-snap-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-scrollbars-1/Overview.bs'><td><a href='/css-scrollbars-1/'>CSS Scrollbars 1</a></td><td>2024-09-13 00:42:18 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='readme' href='/css-scrollbars-1/README'><img alt src='/img/readme.svg'></a><a class='history' href='/history/css-scrollbars-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-scrollbars-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-shadow-parts-1/Overview.bs'><td><a href='/css-shadow-parts-1/'>CSS Shadow Parts 1</a></td><td>2024-09-05 14:36:34 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-shadow-parts-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-shadow-parts-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-shapes</th></tr><tr class='current' data-path='css-shapes-1/Overview.bs'><td><a href='/css-shapes-1/'>CSS Shapes 1</a><span>(Current Work)</span></td><td>2024-09-18 17:06:02 PDT</td><td><span title='Alan Stearns'>astearns</span></td><td><a class='issues' href='/css-shapes-1/issues-lc-20140211'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-shapes-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-shapes-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-shapes-2/Overview.bs'><td><a href='/css-shapes-2/'>CSS Shapes 2</a></td><td>2024-10-22 14:26:36 PDT</td><td><span title='Noam Rosenthal'>noamr</span></td><td><a class='history' href='/history/css-shapes-2/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-shapes-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-size-adjust-1/Overview.bs'><td><a href='/css-size-adjust-1/'>CSS Size Adjustment 1</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-size-adjust-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-size-adjust-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-sizing</th></tr><tr class='current' data-path='css-sizing-3/Overview.bs'><td><a href='/css-sizing-3/'>CSS Sizing 3</a><span>(Current Work)</span></td><td>2024-07-25 12:12:32 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td><a class='history' href='/history/css-sizing-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-sizing-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-sizing-4/Overview.bs'><td><a href='/css-sizing-4/'>CSS Sizing 4</a></td><td>2024-10-14 18:28:05 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-sizing-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-sizing-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-snapshot</th></tr><tr class='' data-path='css-2007/Overview.html'><td><a href='/css-2007/'>CSS 2007</a></td><td>2015-11-05 03:34:03 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2007/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-2007/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2010/Overview.html'><td><a href='/css-2010/'>CSS 2010</a></td><td>2015-11-05 03:34:03 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2010/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-2010/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2015/Overview.bs'><td><a href='/css-2015/'>CSS 2015</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2015/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-2015/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2017/Overview.bs'><td><a href='/css-2017/'>CSS 2017</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2017/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-2017/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2018/Overview.bs'><td><a href='/css-2018/'>CSS 2018</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2018/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-2018/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2020/Overview.bs'><td><a href='/css-2020/'>CSS 2020</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2020/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-2020/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2021/Overview.bs'><td><a href='/css-2021/'>CSS 2021</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2021/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-2021/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2022/Overview.bs'><td><a href='/css-2022/'>CSS 2022</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-2022/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-2022/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-2023/Overview.bs'><td><a href='/css-2023/'>CSS 2023</a></td><td>2023-12-11 06:49:41 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-2023/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-2023/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-2024/Overview.bs'><td><a href='/css-2024/'>CSS 2024</a><span>(Current Work)</span></td><td>2023-12-12 13:06:47 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-2024/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-2024/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-speech-1/Overview.bs'><td><a href='/css-speech-1/'>CSS Speech 1</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-speech-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-speech-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-style-attr-1/Overview.html'><td><a href='/css-style-attr-1/'>CSS Style Attributes 1</a></td><td>2024-03-04 22:27:21 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-style-attr-1/issues-lc-2010'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-style-attr-1/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-style-attr-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-syntax-3/Overview.bs'><td><a href='/css-syntax-3/'>CSS Syntax 3</a></td><td>2024-11-20 13:14:05 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-syntax-3/issues-LC-20131105'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-syntax-3/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-syntax-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-tables-3/Overview.bs'><td><a href='/css-tables-3/'>CSS Tables 3</a></td><td>2024-08-01 05:07:09 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='readme' href='/css-tables-3/README'><img alt src='/img/readme.svg'></a><a class='issues' href='/css-tables-3/issues-ed-20160202'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-tables-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-tables-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-template-1/Overview.html'><td><a href='/css-template-1/'>CSS Template Layout 1</a></td><td>2024-03-04 22:27:21 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-template-1/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-template-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-text</th></tr><tr class='current' data-path='css-text-3/Overview.bs'><td><a href='/css-text-3/'>CSS Text 3</a><span>(Current Work)</span></td><td>2024-10-03 14:02:16 PDT</td><td><span>fantasai</span></td><td><a class='issues' href='/css-text-3/issues-cr-2020'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-text-3/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-text-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-text-4/Overview.bs'><td><a href='/css-text-4/'>CSS Text 4</a></td><td>2024-10-30 01:32:54 PDT</td><td><span title='Keith Cirkel'>keith_cirkel</span></td><td><a class='history' href='/history/css-text-4/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-text-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-text-decor</th></tr><tr class='current' data-path='css-text-decor-3/Overview.bs'><td><a href='/css-text-decor-3/'>CSS Text Decoration 3</a><span>(Current Work)</span></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-text-decor-3/issues-cr-2018'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-text-decor-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-text-decor-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-text-decor-4/Overview.bs'><td><a href='/css-text-decor-4/'>CSS Text Decoration 4</a></td><td>2024-03-08 12:04:59 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-text-decor-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-text-decor-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-transforms</th></tr><tr class='current' data-path='css-transforms-1/Overview.bs'><td><a href='/css-transforms-1/'>CSS Transforms 1</a><span>(Current Work)</span></td><td>2023-08-07 09:00:10 PDT</td><td><span title='Nick Schonning'>nick_schonning</span></td><td><a class='issues' href='/css-transforms-1/issues-wd-2013'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-transforms-1/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-transforms-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-transforms-2/Overview.bs'><td><a href='/css-transforms-2/'>CSS Transforms 2</a></td><td>2024-04-03 08:43:11 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-transforms-2/issues-wd-2013'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-transforms-2/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-transforms-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-transitions</th></tr><tr class='current' data-path='css-transitions-1/Overview.bs'><td><a href='/css-transitions-1/'>CSS Transitions 1</a><span>(Current Work)</span></td><td>2023-12-10 06:01:17 PST</td><td><a href='https://dbaron.org/'>dbaron</a></td><td><a class='history' href='/history/css-transitions-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-transitions-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-transitions-2/Overview.bs'><td><a href='/css-transitions-2/'>CSS Transitions 2</a></td><td>2024-11-06 22:50:11 PST</td><td><span title='Brian Birtles (via Travis)'>brian_birtles__via_travis_</span></td><td><a class='history' href='/history/css-transitions-2/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-transitions-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-tv/Overview.html'><td><a href='/css-tv/'>CSS TV 1</a></td><td>2018-09-18 06:30:26 PDT</td><td><span title='Fuqiao Xue'>fuqiao_xue</span></td><td><a class='history' href='/history/css-tv/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/css-tv/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-ui</th></tr><tr class='' data-path='css-ui-3/Overview.bs'><td><a href='/css-ui-3/'>CSS User Interface 3</a></td><td>2023-02-27 12:27:44 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='issues' href='/css-ui-3/issues-2018'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-ui-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-ui-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-ui-4/Overview.bs'><td><a href='/css-ui-4/'>CSS User Interface 4</a><span>(Current Work)</span></td><td>2024-11-01 06:42:43 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='issues' href='/css-ui-4/issues-fpwd-2015'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-ui-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-ui-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-values</th></tr><tr class='' data-path='css-values-3/Overview.bs'><td><a href='/css-values-3/'>CSS Values 3</a></td><td>2024-07-31 10:07:45 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-values-3/issues-cr-2018'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-values-3/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-values-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-values-4/Overview.bs'><td><a href='/css-values-4/'>CSS Values 4</a><span>(Current Work)</span></td><td>2024-10-28 14:57:20 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-values-4/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/css-values-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-values-5/Overview.bs'><td><a href='/css-values-5/'>CSS Values & Units 5</a></td><td>2024-11-21 15:21:48 PST</td><td><span>andruud</span></td><td><a class='history' href='/history/css-values-5/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-values-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-variables</th></tr><tr class='current' data-path='css-variables-1/Overview.bs'><td><a href='/css-variables-1/'>CSS Variables 1</a><span>(Current Work)</span></td><td>2024-10-25 16:06:01 PDT</td><td><span>fantasai</span></td><td><a class='issues' href='/css-variables-1/issues-lc-20140506'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-variables-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-variables-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-variables-2/Overview.bs'><td><a href='/css-variables-2/'>CSS Variables 2</a></td><td>2024-02-27 13:52:13 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/css-variables-2/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-variables-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-view-transitions</th></tr><tr class='current' data-path='css-view-transitions-1/Overview.bs'><td><a href='/css-view-transitions-1/'>CSS View Transitions 1</a><span>(Current Work)</span></td><td>2024-10-22 10:35:35 PDT</td><td><span title='Khushal Sagar'>khushal_sagar</span></td><td><a class='history' href='/history/css-view-transitions-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/css-view-transitions-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='css-view-transitions-2/Overview.bs'><td><a href='/css-view-transitions-2/'>CSS View Transitions 2</a></td><td>2024-11-18 01:54:27 PST</td><td><span title='Noam Rosenthal'>noamr</span></td><td><a class='history' href='/history/css-view-transitions-2/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-view-transitions-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-viewport-1/Overview.bs'><td><a href='/css-viewport-1/'>CSS Viewport 1</a></td><td>2024-07-12 07:07:15 PDT</td><td><span title='Alexis Menard'>amenard</span></td><td><a class='history' href='/history/css-viewport-1/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-viewport-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css-will-change-1/Overview.bs'><td><a href='/css-will-change-1/'>CSS Will Change 1</a></td><td>2022-04-29 13:00:42 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/css-will-change-1/issues-20140429-wd'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-will-change-1/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-will-change-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>css-writing-modes</th></tr><tr class='' data-path='css-writing-modes-3/Overview.bs'><td><a href='/css-writing-modes-3/'>CSS Writing Modes 3</a></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='issues' href='/css-writing-modes-3/issues-cr-2019'><img alt src='/img/issues.svg'></a><a class='history' href='/history/css-writing-modes-3/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-writing-modes-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='css-writing-modes-4/Overview.bs'><td><a href='/css-writing-modes-4/'>CSS Writing Modes 4</a><span>(Current Work)</span></td><td>2023-08-28 12:44:59 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/css-writing-modes-4/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-writing-modes-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='css2/Overview.bs'><td><a href='/css2/'>CSS 2</a></td><td>2023-12-18 12:43:06 PST</td><td><span>fantasai</span></td><td><a class='history' href='/history/css2/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='cssom-1/Overview.bs'><td><a href='/cssom-1/'>CSSOM 1</a></td><td>2024-10-01 05:46:06 PDT</td><td><span>andruud</span></td><td><a class='history' href='/history/cssom-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/cssom-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='cssom-view-1/Overview.bs'><td><a href='/cssom-view-1/'>CSSOM View Module 1</a></td><td>2024-11-12 12:31:47 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/cssom-view-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/cssom-view-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>mediaqueries</th></tr><tr class='' data-path='mediaqueries-3/Overview.html'><td><a href='/mediaqueries-3/'>Media Queries 3</a></td><td>2024-05-21 01:16:26 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='issues' href='/mediaqueries-3/issues-2012-and-later'><img alt src='/img/issues.svg'></a><a class='history' href='/history/mediaqueries-3/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/mediaqueries-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='mediaqueries-4/Overview.bs'><td><a href='/mediaqueries-4/'>Media Queries 4</a><span>(Current Work)</span></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/mediaqueries-4/issues-cr-2017-09-05'><img alt src='/img/issues.svg'></a><a class='history' href='/history/mediaqueries-4/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/mediaqueries-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='' data-path='mediaqueries-5/Overview.bs'><td><a href='/mediaqueries-5/'>Media Queries 5</a></td><td>2024-11-15 13:04:43 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/mediaqueries-5/issues-1'><img alt src='/img/issues.svg'></a><a class='history' href='/history/mediaqueries-5/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/mediaqueries-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='resize-observer-1/Overview.bs'><td><a href='/resize-observer-1/'>Resize Observer 1</a></td><td>2023-01-27 05:48:16 PST</td><td><span title='Oriol Brufau'>oriol</span></td><td><a class='readme' href='/resize-observer-1/explainer'><img alt src='/img/readme.svg'></a><a class='history' href='/history/resize-observer-1/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/resize-observer-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='scroll-animations-1/Overview.bs'><td><a href='/scroll-animations-1/'>Scroll-driven Animations 1</a></td><td>2024-01-31 02:55:39 PST</td><td><span title='Simon Pieters'>spieters</span></td><td><a class='readme' href='/scroll-animations-1/README'><img alt src='/img/readme.svg'></a><a class='history' href='/history/scroll-animations-1/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/scroll-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>selectors</th></tr><tr class='' data-path='selectors-3/Overview.html'><td><a href='/selectors-3/'>Selectors 3</a></td><td>2024-03-04 22:27:21 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='issues' href='/selectors-3/issues-lc-2009'><img alt src='/img/issues.svg'></a><a class='history' href='/history/selectors-3/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/selectors-3/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='selectors-4/Overview.bs'><td><a href='/selectors-4/'>Selectors 4</a><span>(Current Work)</span></td><td>2024-11-22 11:47:01 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/selectors-4/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/selectors-4/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr class='' data-path='selectors-nonelement-1/Overview.bs'><td><a href='/selectors-nonelement-1/'>Non-element Selectors 1</a></td><td>2024-01-24 06:55:31 PST</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/selectors-nonelement-1/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/selectors-nonelement-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody><tbody><tr><th colspan='4'>web-animations</th></tr><tr class='' data-path='web-animations-1/Overview.bs'><td><a href='/web-animations-1/'>Web Animations 1</a></td><td>2024-10-21 07:26:04 PDT</td><td><span title='Vladimir Levin'>vmpstr</span></td><td><a class='history' href='/history/web-animations-1/'><img alt src='/img/history.svg'></a><a class='bikeshed generating' href='/bikeshed/web-animations-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr class='current' data-path='web-animations-2/Overview.bs'><td><a href='/web-animations-2/'>Web Animations 2</a><span>(Current Work)</span></td><td>2024-11-18 12:00:42 PST</td><td><span>DavMila</span></td><td><a class='history' href='/history/web-animations-2/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/web-animations-2/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody></table><table class='list' id='doc_table'><thead><tr><th>Other Documents</th><th>Last Update</th><th>By</th><th></th></tr></thead><tbody><tr data-path='.github/PULL_REQUEST_TEMPLATE.md'><td><a href='/.github/PULL_REQUEST_TEMPLATE'>.github/PULL_REQUEST_TEMPLATE</a></td><td>2018-07-25 15:19:12 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/.github/PULL_REQUEST_TEMPLATE'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/.github/PULL_REQUEST_TEMPLATE'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='CODE_OF_CONDUCT.md'><td><a href='/CODE_OF_CONDUCT'>CODE_OF_CONDUCT</a></td><td>2018-07-25 14:21:21 PDT</td><td><span>fantasai</span></td><td><a class='history' href='/history/CODE_OF_CONDUCT'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/CODE_OF_CONDUCT'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='CONTRIBUTING.md'><td><a href='/CONTRIBUTING'>CONTRIBUTING</a></td><td>2024-02-29 13:31:02 PST</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/CONTRIBUTING'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/CONTRIBUTING'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='LICENSE.md'><td><a href='/LICENSE'>LICENSE</a></td><td>2017-06-08 08:37:03 PDT</td><td><span title='Philippe Le Hegaret'>plh</span></td><td><a class='history' href='/history/LICENSE'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/LICENSE'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='README.markdown'><td><a href='/README'>README</a></td><td>2020-12-02 16:08:50 PST</td><td><span title='Peter Linss'>plinss</span></td><td><a class='history' href='/history/README'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/README'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='css-contain-4/scroll_state_explainer.md'><td><a href='/css-contain-4/scroll_state_explainer'>css-contain-4/scroll_state_explainer</a></td><td>2024-06-14 06:11:03 PDT</td><td><a href='https://florian.rivoal.net'>florian</a></td><td><a class='history' href='/history/css-contain-4/scroll_state_explainer'><img alt src='/img/history.svg'></a><a class='markdown generating' href='/markdown/css-contain-4/scroll_state_explainer'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='css-floats-3/float-notes.md'><td><a href='/css-floats-3/float-notes'>css-floats-3/float-notes</a></td><td>2017-10-11 14:47:55 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-floats-3/float-notes'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/css-floats-3/float-notes'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='css-mixins-1/Overview.bs'><td><a href='/css-mixins-1/'>css-mixins-1/</a></td><td>2024-10-15 15:09:44 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/css-mixins-1/'><img alt src='/img/history.svg'></a><a class='bikeshed success' href='/bikeshed/css-mixins-1/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-path='css-module/Overview.bs'><td><a href='/css-module/'>css-module/</a></td><td>2023-07-02 16:08:00 PDT</td><td><a href='https://dbaron.org/'>dbaron</a></td><td><a class='history' href='/history/css-module/'><img alt src='/img/history.svg'></a><a class='bikeshed link-error' href='/bikeshed/css-module/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-path='css-overflow-5/Overview.bs'><td><a href='/css-overflow-5/'>css-overflow-5/</a></td><td>2024-11-21 15:27:38 PST</td><td><span title='Rob Flack'>flackr</span></td><td><a class='history' href='/history/css-overflow-5/'><img alt src='/img/history.svg'></a><a class='bikeshed fatal' href='/bikeshed/css-overflow-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-path='indexes/Overview.bs'><td><a href='/indexes/'>indexes/</a></td><td>2024-07-24 08:27:39 PDT</td><td><span title='Chris Lilley'>chrisl</span></td><td><a class='history' href='/history/indexes/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/indexes/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-path='issues.html'><td><a href='/issues.html'>issues.html</a></td><td>2024-02-16 07:54:48 PST</td><td><a href='http://lea.verou.me/'>lea</a></td><td><a class='history' href='/history/issues.html'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/issues.html'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-path='selectors-5/Overview.bs'><td><a href='/selectors-5/'>selectors-5/</a></td><td>2024-09-23 17:51:47 PDT</td><td><span title='Tab Atkins Jr.'>tabatkins</span></td><td><a class='history' href='/history/selectors-5/'><img alt src='/img/history.svg'></a><a class='bikeshed warning' href='/bikeshed/selectors-5/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr><tr data-path='snapshot-2017-modules.md'><td><a href='/snapshot-2017-modules'>snapshot-2017-modules</a></td><td>2017-01-26 09:01:21 PST</td><td><span>Nantonos</span></td><td><a class='history' href='/history/snapshot-2017-modules'><img alt src='/img/history.svg'></a><a class='markdown success' href='/markdown/snapshot-2017-modules'><svg xmlns="http://www.w3.org/2000/svg" width="208" height="128" viewBox="0 0 208 128"><mask id="a"><rect width="100%" height="100%" fill="#fff"/><path d="M30 98v-68h20l20 25 20-25h20v68h-20v-39l-20 25-20-25v39zM155 98l-30-33h20v-35h20v35h20z"/></mask><rect width="100%" height="100%" fill="blue" ry="15" mask="url(#a)"/></svg></a></td></tr><tr data-path='web-animations-css-integration/Overview.html'><td><a href='/web-animations-css-integration/'>web-animations-css-integration/</a></td><td>2015-01-16 02:49:34 PST</td><td><span title='Shane Stephens'>sstephen2</span></td><td><a class='history' href='/history/web-animations-css-integration/'><img alt src='/img/history.svg'></a><a class='html committed' href='/bikeshed/web-animations-css-integration/'><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 100 100"><g stroke="blue" stroke-width="6" fill="none"><path fill="blue" stroke="none" d="M 1 40 v -6 l 60 -32 v 6 z" /><circle cx="75" cy="79" r="15" /><circle fill="blue" stroke="none" cx="75" cy="79" r="4" /><path d="M 75 79 L 65 49 L 55 49" /><path d="M 67 55 L 48 69" /><path fill="blue" stroke="none" d="M 5 95 L 5 35 L 50 10 L 50 95"/></g></svg></a></td></tr></tbody></table></div><div class='footer'><address>Please send comments, questions, and error reports to <a href='http://lists.w3.org/Archives/Public/www-style'>www-style@w3.org</a></address></div></body></html>