html - radiogroup tag not working: HTML5 -


summary: have template should contain radiogroup having 4 radio buttons. these values used change layout of specific block using css. example:

<radiogroup class="page-layout">         <radio value="portrait-6-5">portrait, width: 6.5 inches.</radio>         <radio value="portrait-7-5">portrait, width: 7.5 inches.</radio>         <radio value="portrait-9">portrait, width: 9 inches.</radio>         <radio value="landscape-10">landscape, width: 10 inches.</radio> </radiogroup> <div class="container report-block portrait-6-5">      //block </div> 

the layout of ".report-block" change when there change in radio buttons reference: mozilla mdn

issue: using mozilla browser. support radiogroup tag. not want use <input type="radio">. there other option.


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -