@Stevegolden12 https://codepen.io/mandeep4243/pen/pQYRzw
i m willing to bring that add note button in line with input box can u pls see to that
Thanks in advance
@mandeephub if you head over navbar
docs you see that they reccomend working with spacing
and flex
utilities to create a layout. That's because navbar
has a more "strict" markup due to its intended "limited" usage.
In the example you see they use a form-inline
element as a direct child of nav (not a container-fluid
).
My suggestion is, if you want to keep the container-fluid / row
system inside the navbar
is to use auto layout columns
xs
breakpoint in BS 4Altough I have now another sort of implied question.
In this pen, is the reason for my logo not centering horizontally in responsive view, altough I have declared the flex, justify-content and align items properties in the css specificity?
function isTrue (value){
switch (value) {
case "":
case null:
case NaN:
case 0:
case undefined:
case false:
return false;
default:
return true;
}
}
isTrue([false, null, 0, NaN, undefined, ""]);
> NaN === NaN
false
> NaN == NaN
false
better to use something like
> isNaN(NaN)
true
or
> Boolean(NaN)
false