小编3st*_*cks的帖子

使flex容器占用内容宽度,而不是宽度100%

在下面的例子中,我有一个按钮,其中包含以下样式...

.button-flexbox-approach {
    /* other button styles */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
}
Run Code Online (Sandbox Code Playgroud)

http://codepen.io/3stacks/pen/JWErZJ

但它会自动缩放到100%而不是内容的宽度.您可以设置显式宽度,但这样就不允许文本自然换行.

如何创建一个内部文本以flexbox为中心但不会增长到适合容器大小的按钮?

.container {
  width: 100%;
  height: 100%;
}

.button {
/*   Simply flexing the button makes it grow to the size of the container... How do we make it only the size of the content inside it? */
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-weight: normal;
  line-height: normal;
  margin: 0; …
Run Code Online (Sandbox Code Playgroud)

html css frontend css3 flexbox

10
推荐指数
1
解决办法
1万
查看次数

使用aws-cli将URL保存到AWS参数存储

好吧,所以我试图以编程方式将我的无服务器生成的API端点存储在参数存储中,以供另一个项目使用。

仅作为示例,我将尝试存储google.com。

aws ssm put-parameter --name /dev/someStore --value https://google.com --type String

这失败了,这是可以理解的。

Error parsing parameter '--value': Unable to retrieve https://google.com: received non 200 status code of 301

但是,如果我将网址用引号引起来...

aws ssm put-parameter --name /dev/someStore --value "https://google.com" --type String

它仍然失败,并显示相同的错误。有什么方法可以阻止cli尝试评估URL并仅保存该死的字符串吗?

amazon-web-services aws-cli aws-parameter-store

4
推荐指数
3
解决办法
842
查看次数